iuioiua
Deno.Kv() not connecting latest Canary, if I downgrade to RC1 then it works, but then FE don't work.
Can you please open an issue? I think I'm running into the same issue in https://github.com/denoland/saaskit/pull/685. I'm seeing
Deno.openKv()
as being undefined
even when using --unstable-kv
. CC @bartlomieju7 replies
Workspace member parallel processes (monorepo)
I believe not. If you'd like to see this feature added, you could open an issue. https://github.com/denoland/deno/issues/new?assignees=&labels=&projects=&template=feature_request.md&title=
3 replies
deno_kv_oauth + hono how to fetch data from google profile: state, plans, method names changing.
handleCallback()
resolves to an object that contains the OAuth access token. Use the access token to make a request to the Google REST API for the user's name.13 replies
How to rewrite this: `import * as base32 from "jsr:@std/encoding@0.224.3/base32.ts";`
Yes, JSR is better than
/x
. This blog post can provide more context behind the decision: https://deno.com/blog/std-on-jsr5 replies
Missing resource in deno's docs
Issue created: https://github.com/denoland/deno-docs/issues/416
3 replies
What does this library "assert" does?
std/assert
contains functions that ensure that particular conditions are met. If a condition isn’t met, an error is thrown. These functions are good for and mostly used in testing by ensuring APIs behave as expected.3 replies