0.0.2 • Published 5 years ago

@koex/compress v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

compress

NPM version Coverage Status Dependencies Build Status license issues

compress for koa extend.

Install

$ npm install @koex/compress

Usage

// See more in test
import compress from '@koex/compress';

import * as Koa from 'koa';
const app = new Koa();

app.use(compress());

app.use(ctx => {
  ctx.body = 'hello, world!';
});

app.listen(8000, '0.0.0.0', () => {
  console.log('koa server start at port: 8000');
});

Related