koa-static
Simple OnError for Koa
Install
$ npm install @zcorky/koa-static
Usage
// See more in test
import staticCache from '@zcorky/koa-static';
import * as Koa from 'koa';
const app = new Koa();
// fallback
app.use(staticCache('/static', {
dir: path.join(__dirname, './public'),
}));
app.listen(8000, '0.0.0.0', () => {
console.log('koa server start at port: 8000');
});