serve-file
v0.1.4
Published
express sendFile logic refactored as a thunk
Maintainers
Readme
serve-file
Like serve-static but for individual files. Refactored and decoupled from express res.sendFile. Can be used standalone with router to support HTTP/2 protocol.
npm i -S serve-file
Usage
import Router from 'router'
import serveFile from 'serve-file'
const app = Router()
app.use('/my-file.txt', serveFile('path/to/my-file.txt'))
