Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
victor
/
test-docker
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0fafa38
test-docker
/
index.js
victor
HF Staff
update
0fafa38
over 2 years ago
raw
Copy download link
history
blame
224 Bytes
const
express =
require
(
"express"
);
const
app =
express
();
const
port =
80
;
app.
get
(
"/"
,
(
req, res
) =>
{
res.
send
(
"Hello World!"
);
});
app.
listen
(port,
() =>
{
console
.
log
(
`Example app listening on port
${port}
`
);
});