1.0.1 • Published 5 years ago

koa-reload-middleware v1.0.1

Weekly downloads
1,318
License
MIT
Repository
github
Last release
5 years ago

koa-reload-middleware

CircleCI

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.