jasonj
jasonj
CDCloudflare Developers
Created by kdaniel2410 on 11/8/2024 in #workers-help
What do you use to hash passwords on Cloudflare workers?
use web-crypto for cloudflare .it similar to stand web-crypto .but some small part is diffent. https://developers.cloudflare.com/workers/runtime-apis/web-crypto/#digest
3 replies
CDCloudflare Developers
Created by shay on 7/8/2024 in #workers-help
Unable to bind durable objects on Remix + Vite project
in remix+vite+workers , it could be work export class WSWorker implements DurableObject { constructor(state, env) { } async fetch(request) { return new Response(undefined, { status: 204 }); } } and in local develop, can not use remix vite:dev to run it .
use build and wrangler dev to run it in local to debug this part
4 replies