Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
coyotte508
/
test-req
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c24174e
test-req
/
server.ts
coyotte508
HF Staff
✨ Tada
c24174e
over 2 years ago
raw
Copy download link
history
blame
135 Bytes
import
Koa
from
"koa"
;
const
app =
new
Koa
();
app.
use
(
(
ctx
) =>
{
ctx.
body
= {
url
: ctx.
request
.
url
,
};
});
app.
listen
(
7860
);