Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zhang-wei-jian
/
docker
like
1
Sleeping
App
Files
Files
Community
73d0f5b
docker
/
app.js
zhang-wei-jian
update
73d0f5b
over 1 year ago
raw
Copy download link
history
blame
Safe
199 Bytes
const
koa =
require
(
'koa'
)
const
app =
new
koa
()
app.
use
(
async
(ctx, next) => {
ctx.
body
=
'Hello World'
})
app.
listen
(
8888
,
() =>
{
console
.
log
(
'server is running at http://localhost:8888'
)
})