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
/
ch19
/
express_static.js
5 lines
•
184 B
JavaScript
View Raw
1
2
3
4
5
var
express =
require
(
'express'
);
var
app =
express
(); app.
use
(
'/'
, express.
static
(
'./static'
), {maxAge:
60
*
60
*
1000
}); app.
use
(
'/images'
, express.
static
(
'../images'
)); app.
listen
(
80
);