1.0.3 • Published 6 years ago

restifydownload v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Usage

    const rd=require('restifydownload');
    app.use(rd);

    app.get('/test/download',(req, res, next)=>{
        res.download({
            path: '/the/path/of/file',
            name: 'filename',
            type: 'contentType',
            charSet: 'charSet'
        })
    })
    app.get('/test/download2',(req, res, next)=>{
        res.sendFile('filedata',{
            name: 'filename',
            type: 'contentType',
            charSet: 'charSet'
        })
    })
1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago