stevekrouse avatar
stevekrouse
blob_admin_blob
Script
Forked from stevekrouse/blob_admin_home
0
stevekrouse avatar
stevekrouse
blob_admin_home
Script
Forked from stevekrouse/sqlite_admin_tables
0
stevekrouse avatar
stevekrouse
html
Script
An interactive, runnable TypeScript val by stevekrouse
1
pomdtr avatar
pomdtr
basicAuth
Script
Val Town Basic Auth Add basic auth on top of any http val Usage Wrap your HTTP handler in the basicAuth middleware. import { basicAuth } from "https://esm.town/v/pomdtr/basicAuth"; function handler(req: Request) { return new Response("You are authenticated!"); } export default basicAuth(handler, { verifyUser: (username, password) => username == "user" && password == "password" }); If you want to use an apiToken as a password: import { basicAuth } from "https://esm.town/v/pomdtr/basicAuth"; import { verifyToken } from "https://www.val.town/v/pomdtr/verifyToken" function handler(req: Request) { return new Response("You are authenticated!"); } export default basicAuth(handler, { verifyUser: (_, password) => verifyToken(password) });
7
1
Next
vez-untitled_tanhare.web.val.run
December 14, 2023