@koex/helmet
v0.0.3
Published
helmet for koa extend
Downloads
10
Readme
helmet
helmet for koa extend, wrapper with helmet.
Install
$ npm install @koex/helmet
Usage
// See more in test
import helmet from '@koex/helmet';
import * as Koa from 'koa';
const app = new Koa();
app.use(helmet());
app.use(ctx => {
ctx.body = 'Hello, World!';
});
app.listen(8000, '0.0.0.0', () => {
console.log('koa server start at port: 8000');
});