iuioiua
iuioiua
DDeno
Created by aicone on 3/19/2025 in #help
Deno.connect failed to read all bytes when connected to smtp #help
Please provide a code snippet.
6 replies
DDeno
Created by Skrillx on 2/23/2025 in #help
deno_blog is broken
That too!
12 replies
DDeno
Created by Skrillx on 2/23/2025 in #help
deno_blog is broken
You’ll have to submit a pull request with x/emoji
12 replies
DDeno
Created by Skrillx on 2/23/2025 in #help
deno_blog is broken
Read the error message: deno_blog uses x/emoji, which uses assert instead of with in the import of ./all.json. In other words, x/emoji needs to be fixed.
12 replies
DDeno
Created by banananas on 10/11/2024 in #help
Getting the width and height of an image
Note: this has nothing to do with the Standard Library
5 replies
DDeno
Created by Sean Knowles on 9/10/2024 in #help
Deno.Kv() not connecting latest Canary, if I downgrade to RC1 then it works, but then FE don't work.
Let me raise an issue
7 replies
DDeno
Created by Sean Knowles on 9/10/2024 in #help
Deno.Kv() not connecting latest Canary, if I downgrade to RC1 then it works, but then FE don't work.
I'm seeing this issue on canary while using --unstable-kv in that PR I linked.
7 replies
DDeno
Created by Sean Knowles on 9/10/2024 in #help
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 @bartlomieju
7 replies
DDeno
Created by Sean Knowles on 9/8/2024 in #help
DenoKV - Missing DENO_KV_ACCESS_TOKEN environment
DENO_KV_ACCESS_TOKEN is an environment variable. You can set it the same you would when running any task in the CLI. On POSIX systems, it'd be run like so:
DENO_KV_ACCESS_TOKEN=abc123 deno run --unstable-kv script.ts
DENO_KV_ACCESS_TOKEN=abc123 deno run --unstable-kv script.ts
Similarly, on Windows using set.
7 replies
DDeno
Created by wilsonlewis on 9/9/2024 in #help
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=
4 replies
DDeno
Created by Bhaumin on 7/29/2024 in #help
Please help to run puppeteer with deno?
23 replies
DDeno
Created by cococore on 6/14/2024 in #help
deno_kv_oauth + hono how to fetch data from google profile: state, plans, method names changing.
Can you please clarify what this means?
13 replies
DDeno
Created by cococore on 6/14/2024 in #help
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
DDeno
Created by Brandon Kalinowski on 6/14/2024 in #help
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-jsr
5 replies
DDeno
Created by Danielduel on 4/7/2024 in #help
Missing resource in deno's docs
3 replies
DDeno
Created by David on 3/3/2024 in #help
`.read()` method in `Deno.Conn` or `Deno.FsFile` in Deno 2.0
They’re staying around for the foreseeable future. I’d try move to the Streams API if you care about web compatibility.
5 replies
DDeno
Created by David on 3/3/2024 in #help
`.read()` method in `Deno.Conn` or `Deno.FsFile` in Deno 2.0
Yep! The interface is being moved to std/io but the methods are staying. There’s been a little confusion around this so you’re not the only one 😅
5 replies
DDeno
Created by liamtft on 2/21/2024 in #help
Conditional callback with deno_kv_oauth
Hi there, are you able to open a GitHub issue? This is an interesting problem. Let me get back to you on it 🙂
3 replies
DDeno
Created by babakfp on 2/10/2024 in #help
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