Files
expressjs.com/_includes/api/en/3x/mw-compress.md
Douglas Christopher Wilson faa6bb9e0a Apply StandardJS style to API docs
2019-05-26 22:47:09 -04:00

308 B

compress()

Compress response data with gzip / deflate. This middleware should be placed "high" within the stack to ensure all responses may be compressed.

app.use(express.logger())
app.use(express.compress())
app.use(express.methodOverride())
app.use(express.bodyParser())