-
Version: Deno 2.0.3
I have tested this on both a Mac and Windows WSL
Using node-fetch always works.
When using Deno's default fetch if we increase the payload size I will get an error.
```
…
-
Now that [Node v8 is the active release](https://github.com/nodejs/Release), which supports async/await, we should release a new major of safeps, that makes use of async/await and promise returns
-
The general idea of separating identification from authentication has been around for a while, specially in the context of Social login, where OIDC is (unfortunately?) used for both. Since we are gett…
-
Might be better to use async/await over promises in the API to enhance readability. This could be especially useful in the tests, where were are currently using `chainPromises()` to make the code easi…
-
-
### Version
v22.9.0
### Platform
```text
Linux regseblaptop 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
```
### Subsyste…
-
I am struggling to see how this:
```js
const [requestError, response] ?= await fetch(
"https://api.example.com/data"
)
if (requestError) {
handleRequestError(requestError)
…
-
### Version
5.21.2
### Platform
NodeJS
### What happened?
We use BullMQ Job Scheduler to trigger frequent tasks (multiple per second). We leverage the `schedulerId` to ensure one task i…
-
The following is a minimal reproducible example to show how this doesn't work with node 20 (but does with node 18 and 16).
```
~/websocketfs$ node
Welcome to Node.js v20.5.1.
Type ".help" for more…
-
Hello!
Consider the following code:
```ts
const redlock = new Redlock([redis]);
const promises = [];
promises.push(run());
promises.push(run());
await Promise.all(promises);
async …