yieldray-uuid.express.val.run
Readme

Get an uuid via http GET call

1
2
3
4
5
6
7
8
9
10
11
12
export async function uuid(req: express.Request, res: express.Response) {
res.set({
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Method": "*",
"Access-Control-Allow-Headers": "*",
"Access-Control-Allow-Credentials": "true",
"Access-Control-Expose-Headers": "*",
"Access-Control-Max-Age": "7200",
"Timing-Allow-Origin": "*",
});
res.send(crypto.randomUUID());
}
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!
v3
October 23, 2023