UNPKG
fruitstand
Version:
latest (0.0.1)
0.0.1
fruit stand
github.com/classmember/fruitstand
classmember/fruitstand
fruitstand
/
examples
/
nodejs-mongodb-angularjs-web-development
/
ch18
/
express_send_download.js
7 lines
•
192 B
JavaScript
View Raw
1
2
3
4
5
6
7
var
express =
require
(
'express'
);
var
url =
require
(
'url'
);
var
app =
express
(); app.
listen
(
80
); app.
get
(
'/download'
,
function
(
req, res
) { res.
sendfile
(
'./views/word.docx'
,
'new.docx'
); });