JavaDad
Explore posts from serversCDCloudflare Developers
•Created by JavaDad on 4/15/2024 in #workers-help
Can not enable Log Push
3 replies
Typing Middleware JWT and others
Currently I am trying to type the
c.get('jwtPayload')
that is documented here. I have tried using the method described here in a global.d.ts
file but this does not seem to take any affect, the jwtPayload get result is still typed as any.
Currently I have removed the global.d.ts file and set types on the Hono instance instead so its more explicit. This is still not working for the jwtPayload (and other values I use in middelware like the oauth middleware):
23 replies
DTDrizzle Team
•Created by JavaDad on 12/22/2023 in #help
How to select part of a string in Drizzle?
I have dates in ISO format (Stored as Strings) in my SQLite database. I need to be able to find a match only querying the year-month-day. Attached are two different ways I have tried this and neither seem to work.
4 replies
CDCloudflare Developers
•Created by JavaDad on 4/28/2023 in #pages-help
Cloudflare Pages Function CORS error
4 replies
CDCloudflare Developers
•Created by JavaDad on 3/1/2023 in #workers-help
Can't Work with Queues and D1 in the same project
Queues will not work when running
wrangler dev
as they are only supported with the --local
command. Unfortunately, D1 does not seem to work correctly locally when using workers-qb as the following error always is thrown when running workers-qb locally but not when running remote.
3 replies
CDCloudflare Developers
•Created by JavaDad on 1/27/2023 in #workers-help
How to bind to services
Hello,
I am new to workers and trying to understand service binding. In the wrangler init TypeScript project there is an environment interface:
What I am trying to understand is where the values
KVNamespace
or R2Bucket
are coming from. In my wranlger.toml I have a binding = "DB"
(in this case D1) but I don't know how to use env.DB
in the code since TypeScript says DB does not exist on type Env
. I understand it needs to be added into the interface but not sure how to reference it there.8 replies