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...
ae53db5
test-req
/
server.ts
coyotte508
HF Staff
fixup! ✨ Tada
ae53db5
about 2 years ago
raw
Copy download link
history
blame
169 Bytes
import
Koa
from
"koa"
;
const
app =
new
Koa
();
app.
use
(
(
ctx
) =>
{
ctx.
body
= {
fullUrl
: ctx.
request
.
url
,
query
: ctx.
request
.
query
,
};
});
app.
listen
(
7860
);