1 | # send
|
2 |
|
3 | [![NPM Version][npm-version-image]][npm-url]
|
4 | [![NPM Downloads][npm-downloads-image]][npm-url]
|
5 | [![Linux Build][github-actions-ci-image]][github-actions-ci-url]
|
6 | [![Windows Build][appveyor-image]][appveyor-url]
|
7 | [![Test Coverage][coveralls-image]][coveralls-url]
|
8 |
|
9 | Send is a library for streaming files from the file system as a http response
|
10 | supporting partial responses (Ranges), conditional-GET negotiation (If-Match,
|
11 | If-Unmodified-Since, If-None-Match, If-Modified-Since), high test coverage,
|
12 | and granular events which may be leveraged to take appropriate actions in your
|
13 | application or framework.
|
14 |
|
15 | Looking to serve up entire folders mapped to URLs? Try [serve-static](https://www.npmjs.org/package/serve-static).
|
16 |
|
17 | ## Installation
|
18 |
|
19 | This is a [Node.js](https://nodejs.org/en/) module available through the
|
20 | [npm registry](https://www.npmjs.com/). Installation is done using the
|
21 | [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):
|
22 |
|
23 | ```bash
|
24 | $ npm install send
|
25 | ```
|
26 |
|
27 | ## API
|
28 |
|
29 | ```js
|
30 | var send = require('send')
|
31 | ```
|
32 |
|
33 | ### send(req, path, [options])
|
34 |
|
35 | Create a new `SendStream` for the given path to send to a `res`. The `req` is
|
36 | the Node.js HTTP request and the `path` is a urlencoded path to send (urlencoded,
|
37 | not the actual file-system path).
|
38 |
|
39 | #### Options
|
40 |
|
41 | ##### acceptRanges
|
42 |
|
43 | Enable or disable accepting ranged requests, defaults to true.
|
44 | Disabling this will not send `Accept-Ranges` and ignore the contents
|
45 | of the `Range` request header.
|
46 |
|
47 | ##### cacheControl
|
48 |
|
49 | Enable or disable setting `Cache-Control` response header, defaults to
|
50 | true. Disabling this will ignore the `immutable` and `maxAge` options.
|
51 |
|
52 | ##### dotfiles
|
53 |
|
54 | Set how "dotfiles" are treated when encountered. A dotfile is a file
|
55 | or directory that begins with a dot ("."). Note this check is done on
|
56 | the path itself without checking if the path actually exists on the
|
57 | disk. If `root` is specified, only the dotfiles above the root are
|
58 | checked (i.e. the root itself can be within a dotfile when when set
|
59 | to "deny").
|
60 |
|
61 | - `'allow'` No special treatment for dotfiles.
|
62 | - `'deny'` Send a 403 for any request for a dotfile.
|
63 | - `'ignore'` Pretend like the dotfile does not exist and 404.
|
64 |
|
65 | The default value is _similar_ to `'ignore'`, with the exception that
|
66 | this default will not ignore the files within a directory that begins
|
67 | with a dot, for backward-compatibility.
|
68 |
|
69 | ##### end
|
70 |
|
71 | Byte offset at which the stream ends, defaults to the length of the file
|
72 | minus 1. The end is inclusive in the stream, meaning `end: 3` will include
|
73 | the 4th byte in the stream.
|
74 |
|
75 | ##### etag
|
76 |
|
77 | Enable or disable etag generation, defaults to true.
|
78 |
|
79 | ##### extensions
|
80 |
|
81 | If a given file doesn't exist, try appending one of the given extensions,
|
82 | in the given order. By default, this is disabled (set to `false`). An
|
83 | example value that will serve extension-less HTML files: `['html', 'htm']`.
|
84 | This is skipped if the requested file already has an extension.
|
85 |
|
86 | ##### immutable
|
87 |
|
88 | Enable or disable the `immutable` directive in the `Cache-Control` response
|
89 | header, defaults to `false`. If set to `true`, the `maxAge` option should
|
90 | also be specified to enable caching. The `immutable` directive will prevent
|
91 | supported clients from making conditional requests during the life of the
|
92 | `maxAge` option to check if the file has changed.
|
93 |
|
94 | ##### index
|
95 |
|
96 | By default send supports "index.html" files, to disable this
|
97 | set `false` or to supply a new index pass a string or an array
|
98 | in preferred order.
|
99 |
|
100 | ##### lastModified
|
101 |
|
102 | Enable or disable `Last-Modified` header, defaults to true. Uses the file
|
103 | system's last modified value.
|
104 |
|
105 | ##### maxAge
|
106 |
|
107 | Provide a max-age in milliseconds for http caching, defaults to 0.
|
108 | This can also be a string accepted by the
|
109 | [ms](https://www.npmjs.org/package/ms#readme) module.
|
110 |
|
111 | ##### root
|
112 |
|
113 | Serve files relative to `path`.
|
114 |
|
115 | ##### start
|
116 |
|
117 | Byte offset at which the stream starts, defaults to 0. The start is inclusive,
|
118 | meaning `start: 2` will include the 3rd byte in the stream.
|
119 |
|
120 | #### Events
|
121 |
|
122 | The `SendStream` is an event emitter and will emit the following events:
|
123 |
|
124 | - `error` an error occurred `(err)`
|
125 | - `directory` a directory was requested `(res, path)`
|
126 | - `file` a file was requested `(path, stat)`
|
127 | - `headers` the headers are about to be set on a file `(res, path, stat)`
|
128 | - `stream` file streaming has started `(stream)`
|
129 | - `end` streaming has completed
|
130 |
|
131 | #### .pipe
|
132 |
|
133 | The `pipe` method is used to pipe the response into the Node.js HTTP response
|
134 | object, typically `send(req, path, options).pipe(res)`.
|
135 |
|
136 | ### .mime
|
137 |
|
138 | The `mime` export is the global instance of of the
|
139 | [`mime` npm module](https://www.npmjs.com/package/mime).
|
140 |
|
141 | This is used to configure the MIME types that are associated with file extensions
|
142 | as well as other options for how to resolve the MIME type of a file (like the
|
143 | default type to use for an unknown file extension).
|
144 |
|
145 | ## Error-handling
|
146 |
|
147 | By default when no `error` listeners are present an automatic response will be
|
148 | made, otherwise you have full control over the response, aka you may show a 5xx
|
149 | page etc.
|
150 |
|
151 | ## Caching
|
152 |
|
153 | It does _not_ perform internal caching, you should use a reverse proxy cache
|
154 | such as Varnish for this, or those fancy things called CDNs. If your
|
155 | application is small enough that it would benefit from single-node memory
|
156 | caching, it's small enough that it does not need caching at all ;).
|
157 |
|
158 | ## Debugging
|
159 |
|
160 | To enable `debug()` instrumentation output export __DEBUG__:
|
161 |
|
162 | ```
|
163 | $ DEBUG=send node app
|
164 | ```
|
165 |
|
166 | ## Running tests
|
167 |
|
168 | ```
|
169 | $ npm install
|
170 | $ npm test
|
171 | ```
|
172 |
|
173 | ## Examples
|
174 |
|
175 | ### Serve a specific file
|
176 |
|
177 | This simple example will send a specific file to all requests.
|
178 |
|
179 | ```js
|
180 | var http = require('http')
|
181 | var send = require('send')
|
182 |
|
183 | var server = http.createServer(function onRequest (req, res) {
|
184 | send(req, '/path/to/index.html')
|
185 | .pipe(res)
|
186 | })
|
187 |
|
188 | server.listen(3000)
|
189 | ```
|
190 |
|
191 | ### Serve all files from a directory
|
192 |
|
193 | This simple example will just serve up all the files in a
|
194 | given directory as the top-level. For example, a request
|
195 | `GET /foo.txt` will send back `/www/public/foo.txt`.
|
196 |
|
197 | ```js
|
198 | var http = require('http')
|
199 | var parseUrl = require('parseurl')
|
200 | var send = require('send')
|
201 |
|
202 | var server = http.createServer(function onRequest (req, res) {
|
203 | send(req, parseUrl(req).pathname, { root: '/www/public' })
|
204 | .pipe(res)
|
205 | })
|
206 |
|
207 | server.listen(3000)
|
208 | ```
|
209 |
|
210 | ### Custom file types
|
211 |
|
212 | ```js
|
213 | var http = require('http')
|
214 | var parseUrl = require('parseurl')
|
215 | var send = require('send')
|
216 |
|
217 | // Default unknown types to text/plain
|
218 | send.mime.default_type = 'text/plain'
|
219 |
|
220 | // Add a custom type
|
221 | send.mime.define({
|
222 | 'application/x-my-type': ['x-mt', 'x-mtt']
|
223 | })
|
224 |
|
225 | var server = http.createServer(function onRequest (req, res) {
|
226 | send(req, parseUrl(req).pathname, { root: '/www/public' })
|
227 | .pipe(res)
|
228 | })
|
229 |
|
230 | server.listen(3000)
|
231 | ```
|
232 |
|
233 | ### Custom directory index view
|
234 |
|
235 | This is a example of serving up a structure of directories with a
|
236 | custom function to render a listing of a directory.
|
237 |
|
238 | ```js
|
239 | var http = require('http')
|
240 | var fs = require('fs')
|
241 | var parseUrl = require('parseurl')
|
242 | var send = require('send')
|
243 |
|
244 | // Transfer arbitrary files from within /www/example.com/public/*
|
245 | // with a custom handler for directory listing
|
246 | var server = http.createServer(function onRequest (req, res) {
|
247 | send(req, parseUrl(req).pathname, { index: false, root: '/www/public' })
|
248 | .once('directory', directory)
|
249 | .pipe(res)
|
250 | })
|
251 |
|
252 | server.listen(3000)
|
253 |
|
254 | // Custom directory handler
|
255 | function directory (res, path) {
|
256 | var stream = this
|
257 |
|
258 | // redirect to trailing slash for consistent url
|
259 | if (!stream.hasTrailingSlash()) {
|
260 | return stream.redirect(path)
|
261 | }
|
262 |
|
263 | // get directory list
|
264 | fs.readdir(path, function onReaddir (err, list) {
|
265 | if (err) return stream.error(err)
|
266 |
|
267 | // render an index for the directory
|
268 | res.setHeader('Content-Type', 'text/plain; charset=UTF-8')
|
269 | res.end(list.join('\n') + '\n')
|
270 | })
|
271 | }
|
272 | ```
|
273 |
|
274 | ### Serving from a root directory with custom error-handling
|
275 |
|
276 | ```js
|
277 | var http = require('http')
|
278 | var parseUrl = require('parseurl')
|
279 | var send = require('send')
|
280 |
|
281 | var server = http.createServer(function onRequest (req, res) {
|
282 | // your custom error-handling logic:
|
283 | function error (err) {
|
284 | res.statusCode = err.status || 500
|
285 | res.end(err.message)
|
286 | }
|
287 |
|
288 | // your custom headers
|
289 | function headers (res, path, stat) {
|
290 | // serve all files for download
|
291 | res.setHeader('Content-Disposition', 'attachment')
|
292 | }
|
293 |
|
294 | // your custom directory handling logic:
|
295 | function redirect () {
|
296 | res.statusCode = 301
|
297 | res.setHeader('Location', req.url + '/')
|
298 | res.end('Redirecting to ' + req.url + '/')
|
299 | }
|
300 |
|
301 | // transfer arbitrary files from within
|
302 | // /www/example.com/public/*
|
303 | send(req, parseUrl(req).pathname, { root: '/www/public' })
|
304 | .on('error', error)
|
305 | .on('directory', redirect)
|
306 | .on('headers', headers)
|
307 | .pipe(res)
|
308 | })
|
309 |
|
310 | server.listen(3000)
|
311 | ```
|
312 |
|
313 | ## License
|
314 |
|
315 | [MIT](LICENSE)
|
316 |
|
317 | [appveyor-image]: https://badgen.net/appveyor/ci/dougwilson/send/master?label=windows
|
318 | [appveyor-url]: https://ci.appveyor.com/project/dougwilson/send
|
319 | [coveralls-image]: https://badgen.net/coveralls/c/github/pillarjs/send/master
|
320 | [coveralls-url]: https://coveralls.io/r/pillarjs/send?branch=master
|
321 | [github-actions-ci-image]: https://badgen.net/github/checks/pillarjs/send/master?label=linux
|
322 | [github-actions-ci-url]: https://github.com/pillarjs/send/actions/workflows/ci.yml
|
323 | [node-image]: https://badgen.net/npm/node/send
|
324 | [node-url]: https://nodejs.org/en/download/
|
325 | [npm-downloads-image]: https://badgen.net/npm/dm/send
|
326 | [npm-url]: https://npmjs.org/package/send
|
327 | [npm-version-image]: https://badgen.net/npm/v/send
|