0.0.1 • Published 5 years ago

@zcorky/koa-compress v0.0.1

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

koa-compress

NPM version Coverage Status Dependencies Build Status license issues

response time header for Koa.

Install

$ npm install @zcorky/koa-compress

Usage

// See more in test
import compress from '@zcorky/koa-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