Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Kano001/nodejs
Clone04
/
nodejs
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
nodejs
/
server.js
Clone04
Update server.js
028b2e2
verified
12 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
200 Bytes
const
express =
require
(‘express’)
const
app =
express
()
app.
get
(‘/’,
(
req, res
) =>
res.
send
(‘
Hello
World
!’))
app.
listen
(
7860
,
() =>
console
.
log
(‘
Example
app listening on port
3000
!’))