toa-compress

2.0.1 • Public • Published

toa-compress

compress responses middleware for toa.

NPM version Build Status Downloads

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, Default 1024, the threshold length that should compress.
app.use(compress({threshold: 1024}))

Licences

(The MIT License)

Package Sidebar

Install

npm i toa-compress

Weekly Downloads

13

Version

2.0.1

License

none

Last publish

Collaborators

  • zensh