Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
chartManD
/
testing-area
like
0
Sleeping
App
Files
Files
Community
6ae190f
testing-area
/
mocos.js
chartManD
server js
6ae190f
about 2 months ago
raw
Copy download link
history
blame
Safe
183 Bytes
const
http =
require
(
"http"
);
const
server = http.
createServer
(requestListener);
server.
listen
(port, host,
() =>
{
console
.
log
(
`Server is running on http://
${host}
:
${port}
`
);
});