Skip to content

Commit 735f36f

Browse files
committed
Add CodeSandbox for query parameter
1 parent 17f1f0d commit 735f36f

File tree

5 files changed

+626
-0
lines changed

5 files changed

+626
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import express from "express";
2+
3+
const app = express();
4+
app.get("/", (request, response) => {
5+
response.send(JSON.stringify(request.query));
6+
});
7+
app.listen(3000);

0 commit comments

Comments
 (0)