Worker JS Runtime doesn't supports node crypto completely, whats gonna happen if i use Python? Will worker support Python's Crypto libraries? Also i can't use Firebase Admin SDK with Js Runtime, can i use that in Python?
hey, after looking through github actions and wrangler actions, I think i may of gotten more confused with this comment hahahaha. The idea im having is to create a worker that will parse a folder within itself containing mdx files to store into a D1. The workflow goal is to push to the main branch of the worker repo with new mdx files where in turn the worker will re-deploy and add them to D1. The mdx files will be pulled from D1 by a client application to display them.
That statement is a bit too vague If you mean literally having Workers run git, no If you mean having automated deployments for Workers from Github, there's a github action you can use: https://github.com/cloudflare/wrangler-action
Which discussion board do I ask for DNS related questions? I am trying to get naked domain(apex) to point to www. and for the heck of me I dont understand how to make this work even with a redirect rule. And followed several articles on google
O método global fetch() inicia o processo de busca de um recurso da rede, retornando uma promessa que é cumprida assim que a resposta estiver disponível.
That error typically means a package you are using is using the XMLHTTPRequest method. You will need to patch the package to use fetch or find a different package.
If your use of express is for routes, in workers you can work with itty-router where you can create routes, middleware, etc. Workers, for security reasons, limit many things that exist in large libraries, so there will be cases that you will have to get around by looking for others.