I'm using koa-static-folder, but apparently it doesn't provide access to files added after the server starts without the need to restart the actual server. Are there any middleware or libraries that do?
Asked
Active
Viewed 224 times
1 Answers
0
As it says in the description of koa-static-folder
changes made in the underlying folders require a restart of your app
You can use nodemon to restart your when files change.

Patrick
- 13,872
- 5
- 35
- 53
-
I know this, but what I need is a way to refresh the resources without restarting the server, be it another library or the like – Luis A Medina Ramos Apr 04 '15 at 23:28