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
/
ch24
/
node_server.js
6 lines
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
var
express = require(
'express'
);
var
app = express(); app.use(
'/'
, express.
static
(
'./static'
)). use(
'/images'
, express.
static
(
'../images'
)). use(
'/lib'
, express.
static
(
'../lib'
)); app.listen(
80
);