UNPKG
liu
Version:
latest (1.0.0)
1.0.0
liu
liu
/
expresstest.js
9 lines
(7 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
express =
require
(
'express'
)
var
app =
express
()
//respond with "hello world" when a GET request is made to the homepage
app.
get
(
'/'
,
function
(
req,res
){ res.
send
(
'hello world'
) }) app.
listen
(
"3000"
)