Public
HTTP (preview)
maxm-pinkegret.web.val.run
1
2
3
4
5
6
7
8
9
10
11
12
13
// import { Request, Response } from "./node_modules/express/index.js";
export default async function(req: Request): Promise<Response> {
console.log("Request received:", req);
try {
// Your code logic here'
return Response.json({ ok: true });
} catch (error) {
console.error("Error:", error);
return Response.json({ error: "Internal Server Error" }, { status: 500 });
}
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
July 18, 2024