Skip to content

Commit 0cf7d3f

Browse files
authored
fix(docs): improve readme (#209)
* docs: improve readme * funding? * some work * remove some things
1 parent d272132 commit 0cf7d3f

File tree

1 file changed

+89
-31
lines changed

1 file changed

+89
-31
lines changed

README.md

+89-31
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
[![NPM Version][npm-image]][npm-url]
44
[![NPM Downloads][downloads-image]][downloads-url]
55
[![Build Status][github-actions-ci-image]][github-actions-ci-url]
6-
[![Test Coverage][coveralls-image]][coveralls-url]
6+
[![OpenSSF Scorecard Badge][ossf-scorecard-badge]][ossf-scorecard-visualizer]
7+
[![Funding][funding-image]][funding-url]
8+
79

810
Node.js compression middleware.
911

@@ -50,13 +52,16 @@ passed in to the options object or
5052

5153
##### chunkSize
5254

53-
The default value is `zlib.Z_DEFAULT_CHUNK`, or `16384`.
55+
Type: `Number`<br>
56+
Default: `zlib.constants.Z_DEFAULT_CHUNK`, or `16384`.
5457

5558
See [Node.js documentation](http://nodejs.org/api/zlib.html#zlib_memory_usage_tuning)
5659
regarding the usage.
5760

5861
##### filter
5962

63+
Type: `Function`
64+
6065
A function to decide if the response should be considered for compression.
6166
This function is called as `filter(req, res)` and is expected to return
6267
`true` to consider the response for compression, or `false` to not compress
@@ -67,6 +72,9 @@ module to determine if `res.getHeader('Content-Type')` is compressible.
6772

6873
##### level
6974

75+
Type: `Number`<br>
76+
Default: `zlib.constants.Z_DEFAULT_COMPRESSION`, or `-1`
77+
7078
The level of zlib compression to apply to responses. A higher level will result
7179
in better compression, but will take longer to complete. A lower level will
7280
result in less compression, but will be much faster.
@@ -76,64 +84,71 @@ compression). The special value `-1` can be used to mean the "default
7684
compression level", which is a default compromise between speed and
7785
compression (currently equivalent to level 6).
7886

79-
- `-1` Default compression level (also `zlib.Z_DEFAULT_COMPRESSION`).
80-
- `0` No compression (also `zlib.Z_NO_COMPRESSION`).
81-
- `1` Fastest compression (also `zlib.Z_BEST_SPEED`).
87+
- `-1` Default compression level (also `zlib.constants.Z_DEFAULT_COMPRESSION`).
88+
- `0` No compression (also `zlib.constants.Z_NO_COMPRESSION`).
89+
- `1` Fastest compression (also `zlib.constants.Z_BEST_SPEED`).
8290
- `2`
8391
- `3`
8492
- `4`
8593
- `5`
86-
- `6` (currently what `zlib.Z_DEFAULT_COMPRESSION` points to).
94+
- `6` (currently what `zlib.constants.Z_DEFAULT_COMPRESSION` points to).
8795
- `7`
8896
- `8`
89-
- `9` Best compression (also `zlib.Z_BEST_COMPRESSION`).
90-
91-
The default value is `zlib.Z_DEFAULT_COMPRESSION`, or `-1`.
97+
- `9` Best compression (also `zlib.constants.Z_BEST_COMPRESSION`).
9298

9399
**Note** in the list above, `zlib` is from `zlib = require('zlib')`.
94100

95101
##### memLevel
96102

103+
Type: `Number`<br>
104+
Default: `zlib.constants.Z_DEFAULT_MEMLEVEL`, or `8`
105+
97106
This specifies how much memory should be allocated for the internal compression
98107
state and is an integer in the range of `1` (minimum level) and `9` (maximum
99108
level).
100109

101-
The default value is `zlib.Z_DEFAULT_MEMLEVEL`, or `8`.
102-
103110
See [Node.js documentation](http://nodejs.org/api/zlib.html#zlib_memory_usage_tuning)
104111
regarding the usage.
105112

106113
##### brotli
107114

115+
Type: `Object`
116+
108117
This specifies the options for configuring Brotli. See [Node.js documentation](https://nodejs.org/api/zlib.html#class-brotlioptions) for a complete list of available options.
109118

110119

111120
##### strategy
112121

122+
Type: `Number`<br>
123+
Default: `zlib.constants.Z_DEFAULT_STRATEGY`
124+
113125
This is used to tune the compression algorithm. This value only affects the
114126
compression ratio, not the correctness of the compressed output, even if it
115127
is not set appropriately.
116128

117-
- `zlib.Z_DEFAULT_STRATEGY` Use for normal data.
118-
- `zlib.Z_FILTERED` Use for data produced by a filter (or predictor).
129+
- `zlib.constants.Z_DEFAULT_STRATEGY` Use for normal data.
130+
- `zlib.constants.Z_FILTERED` Use for data produced by a filter (or predictor).
119131
Filtered data consists mostly of small values with a somewhat random
120132
distribution. In this case, the compression algorithm is tuned to
121133
compress them better. The effect is to force more Huffman coding and less
122-
string matching; it is somewhat intermediate between `zlib.Z_DEFAULT_STRATEGY`
123-
and `zlib.Z_HUFFMAN_ONLY`.
124-
- `zlib.Z_FIXED` Use to prevent the use of dynamic Huffman codes, allowing
134+
string matching; it is somewhat intermediate between `zlib.constants.Z_DEFAULT_STRATEGY`
135+
and `zlib.constants.Z_HUFFMAN_ONLY`.
136+
- `zlib.constants.Z_FIXED` Use to prevent the use of dynamic Huffman codes, allowing
125137
for a simpler decoder for special applications.
126-
- `zlib.Z_HUFFMAN_ONLY` Use to force Huffman encoding only (no string match).
127-
- `zlib.Z_RLE` Use to limit match distances to one (run-length encoding).
128-
This is designed to be almost as fast as `zlib.Z_HUFFMAN_ONLY`, but give
138+
- `zlib.constants.Z_HUFFMAN_ONLY` Use to force Huffman encoding only (no string match).
139+
- `zlib.constants.Z_RLE` Use to limit match distances to one (run-length encoding).
140+
This is designed to be almost as fast as `zlib.constants.Z_HUFFMAN_ONLY`, but give
129141
better compression for PNG image data.
130142

131143
**Note** in the list above, `zlib` is from `zlib = require('zlib')`.
132144

133145
##### threshold
134146

147+
Type: `Number` or `String`<br>
148+
Default: `1kb`
149+
135150
The byte threshold for the response body size before compression is considered
136-
for the response, defaults to `1kb`. This is a number of bytes or any string
151+
for the response. This is a number of bytes or any string
137152
accepted by the [bytes](https://www.npmjs.com/package/bytes) module.
138153

139154
**Note** this is only an advisory setting; if the response size cannot be determined
@@ -143,16 +158,18 @@ set a `Content-Length` response header.
143158

144159
##### windowBits
145160

146-
The default value is `zlib.Z_DEFAULT_WINDOWBITS`, or `15`.
161+
Type: `Number`<br>
162+
Default: `zlib.constants.Z_DEFAULT_WINDOWBITS`, or `15`
147163

148164
See [Node.js documentation](http://nodejs.org/api/zlib.html#zlib_memory_usage_tuning)
149165
regarding the usage.
150166

151167
##### enforceEncoding
152168

153-
This is the default encoding to use when the client does not specify an encoding in the request's [Accept-Encoding](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Encoding) header.
169+
Type: `String`<br>
170+
Default: `identity`
154171

155-
The default value is `identity`.
172+
This is the default encoding to use when the client does not specify an encoding in the request's [Accept-Encoding](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Encoding) header.
156173

157174
#### .filter
158175

@@ -164,6 +181,7 @@ var compression = require('compression')
164181
var express = require('express')
165182

166183
var app = express()
184+
167185
app.use(compression({ filter: shouldCompress }))
168186

169187
function shouldCompress (req, res) {
@@ -184,9 +202,9 @@ response to be flushed to the client.
184202

185203
## Examples
186204

187-
### express/connect
205+
### express
188206

189-
When using this module with express or connect, simply `app.use` the module as
207+
When using this module with express, simply `app.use` the module as
190208
high as you like. Requests that pass through the middleware will be compressed.
191209

192210
```js
@@ -201,6 +219,36 @@ app.use(compression())
201219
// add all routes
202220
```
203221

222+
### Node.js HTTP server
223+
224+
```js
225+
var compression = require('compression')({ threshold: 0 })
226+
var http = require('http')
227+
228+
function createServer (fn) {
229+
return http.createServer(function (req, res) {
230+
compression(req, res, function (err) {
231+
if (err) {
232+
res.statusCode = err.status || 500
233+
res.end(err.message)
234+
return
235+
}
236+
237+
fn(req, res)
238+
})
239+
})
240+
}
241+
242+
var server = createServer(function (req, res) {
243+
res.setHeader('Content-Type', 'text/plain')
244+
res.end('hello world!')
245+
})
246+
247+
server.listen(3000, () => {
248+
console.log('> Listening at http://localhost:3000')
249+
})
250+
```
251+
204252
### Server-Sent Events
205253

206254
Because of the nature of compression this module does not work out of the box
@@ -239,15 +287,25 @@ app.get('/events', function (req, res) {
239287
})
240288
```
241289

290+
## Contributing
291+
292+
The Express.js project welcomes all constructive contributions. Contributions take many forms,
293+
from code for bug fixes and enhancements, to additions and fixes to documentation, additional
294+
tests, triaging incoming pull requests and issues, and more!
295+
296+
See the [Contributing Guide](https://github.com/expressjs/express/blob/master/Contributing.md) for more technical details on contributing.
297+
242298
## License
243299

244300
[MIT](LICENSE)
245301

246-
[npm-image]: https://img.shields.io/npm/v/compression.svg
302+
[npm-image]: https://badgen.net/npm/v/compression
247303
[npm-url]: https://npmjs.org/package/compression
248-
[coveralls-image]: https://img.shields.io/coveralls/expressjs/compression/master.svg
249-
[coveralls-url]: https://coveralls.io/r/expressjs/compression?branch=master
250-
[downloads-image]: https://img.shields.io/npm/dm/compression.svg
251-
[downloads-url]: https://npmjs.org/package/compression
252-
[github-actions-ci-image]: https://badgen.net/github/checks/expressjs/compression/master?label=ci
304+
[downloads-image]: https://badgen.net/npm/dm/compression
305+
[downloads-url]: https://npmcharts.com/compare/compression?minimal=true
306+
[github-actions-ci-image]: https://badgen.net/github/checks/expressjs/compression/master?label=CI
253307
[github-actions-ci-url]: https://github.com/expressjs/compression/actions?query=workflow%3Aci
308+
[ossf-scorecard-badge]: https://api.scorecard.dev/projects/github.com/expressjs/compression/badge
309+
[ossf-scorecard-visualizer]: https://ossf.github.io/scorecard-visualizer/#/projects/github.com/expressjs/compression
310+
[funding-url]: https://opencollective.com/express
311+
[funding-image]: https://badgen.net/badge/icon/sponsor/pink?icon=github&label=Open%20Collective

0 commit comments

Comments
 (0)