bun
bun copied to clipboard
Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one
### Version Canary 0.1.5 ### Platform Linux davidpc 5.15.0-41-generic #44-Ubuntu SMP Wed Jun 22 14:20:53 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux ### What steps will reproduce the bug? Earlier I...
### Version 0.1.1 ### Platform Darwin Salt.local 21.5.0 Darwin Kernel Version 21.5.0: Tue Apr 26 21:08:37 PDT 2022; root:xnu-8020.121.3~4/RELEASE_ARM64_T6000 arm64 ### What steps will reproduce the bug? Bun is slowed...
Can it be possible to add an install option for React with TypeScript as a default language? It's kind of a nuisance to change all of the JSX files to...
### Version 0.1.3 ### Platform Linux dev 5.15.52-1-lts #1 SMP Sat, 02 Jul 2022 20:04:03 +0000 x86_64 GNU/Linux ### What steps will reproduce the bug? create any JS/TS project with...
I was testing bun with a project has only one dependency: `graphql-yoga`, but this requires packages that does not specify a version. So bun is unable to install these packages....
Repro motivated by NodeJS docs: ```js const buf1 = Buffer.allocUnsafe(26); const buf2 = Buffer.allocUnsafe(26).fill('!'.charCodeAt(0)); for (let i = 0; i < 26; i++) buf1[i] = i + 97; buf1.copy(buf2, 8,...
Repro on 0.1.6: ```js console.log(new Buffer(3).slice(0,0).length); ``` Node prints `0` while Bun prints `3`. When start and end are equal, it should be returning a zero-length Buffer.
Repro: ```js const A = Buffer.allocUnsafe(26).fill('!'); const B = Buffer.allocUnsafe(26).fill("!".charCodeAt(0)); console.log(A); console.log(B); ``` Node shows two Buffers filled with `0x21` bytes, while Bun does not fill in the first case.
When using paths in `tsconfig.json` to reference files in outer directories, the compiler fails to resolve: ```json { "compilerOptions": { "paths": { "lib/ts/*": ["./lib/ts/*"] } } } ``` ``` error:...
### What is the problem this feature will solve? when i install bun i have to manually figure out which `.bashrc` file to add these lines to:  ### What...