Awesome
toa-compress
compress responses middleware for toa.
toa
Demo
const Toa = require('toa')
const compress = require('../')
const app = new Toa()
app.use(compress())
app.use(function () {
this.body = require('../package.json')
})
app.listen(3000)
compress stream:
const fs = require('fs')
const path = require('path')
const Toa = require('toa')
const compress = require('../')
const app = new Toa()
app.use(compress())
app.use(function () {
this.body = fs.createReadStream(path.resolve(__dirname, '../package.json'))
this.type = 'json'
})
app.listen(3000)
Installation
npm install toa-compress
API
const compress = require('toa-compress')
app.use(compress([options]))
options.threshold
:Number
, Default1024
, the threshold length that should compress.
app.use(compress({threshold: 1024}))
Licences
(The MIT License)