We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Take a file fetch.js with content:
fetch("https://www.google.com/").then(x=>console.log(x));
Executing with bun run fetch.js terminates without any logging while doing deno run fetch.js prints the actual content of the response.
bun run fetch.js
deno run fetch.js
Other problem, adding await in front of everything, like:
await fetch("https://www.google.com/").then(x=>console.log(x));
prints
[0.05ms] "node_modules.bun" - 1 modules, 1 packages [native code]
instead of the relevant response.
The text was updated successfully, but these errors were encountered:
33950c0
No branches or pull requests
Take a file fetch.js with content:
Executing with
bun run fetch.js
terminates without any logging while doingdeno run fetch.js
prints the actual content of the response.Other problem, adding await in front of everything, like:
prints
instead of the relevant response.
The text was updated successfully, but these errors were encountered: