File size: 169 Bytes
c24174e
 
 
 
 
 
ae53db5
 
c24174e
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import Koa from "koa";

const app = new Koa();

app.use((ctx) => {
	ctx.body = {
    fullUrl: ctx.request.url,
    query: ctx.request.query,
  };
});

app.listen(7860);