koa-reload-middleware
v1.0.1
Published
Reload a middleware if is modified during development.
Downloads
5,562
Readme
koa-reload-middleware
Reload a middleware if is modified during development.
Installation
yarn
Usage
import Koa from 'koa';
import reload from 'koa-reload-middleware';
new Koa().use(reload(() => import('./route'))).listen();
Now change
./route
and the next time that the route is requested, the route will be reloaded without the entire server restarting.