TanStack Start with Deno runtime on Workers?
Can I deploy the TanStack Start with deno project to Cloudflare workers?
8 Replies
Like, using Deno for builds? Or for running the actual code once built?
I am using deno instead of node. And
deno.json instead of package.jsonBut to confirm, do you want to use deno for builds? That can probably work
But not for running it once it is actually deployed
like instead of
process.env.NODE_ENV it will be like Deno.env.get("NODE_ENV")
so, won't work?During build?
I mean like
deno task buildDuring build, you can use deno stuff, yeah. I don't think the build image has Deno installed by default, but you can install it yourself https://developers.cloudflare.com/workers/ci-cd/builds/build-image/
okay Thanks, I will look into it