Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-06-22 | change the directory structurejarred/rename | 1 | -870/+0 | ||
2022-06-22 | Move builtins to src/javascript/jsc/builtins | 1 | -1/+1 | ||
2022-06-22 | Fix `WebSocket` when HTTP server is not running | 1 | -1/+1 | ||
2022-06-22 | Fix bug with exceptions inside EventTarget | 1 | -4/+36 | ||
2022-06-22 | Sending works | 1 | -273/+256 | ||
2022-06-22 | WebSocket is a global | 1 | -1/+21 | ||
2022-06-15 | Fix lazy loading internal streams | 1 | -226/+270 | ||
2022-06-15 | direct streams mostly workjarred/direct | 1 | -4/+2 | ||
2022-06-12 | ArrayBufferSink works and it's good. | 1 | -1/+19 | ||
2022-06-07 | Web Streams API (#176) | 1 | -0/+775 | ||
* [bun.js] `WritableStream`, `ReadableStream`, `TransformStream`, `WritableStreamDefaultController`, `ReadableStreamDefaultController` & more * Implement `Blob.stream()` * Update streams.test.js * Fix sourcemaps crash * [TextEncoder] 3x faster in hot loops * reading almost works * start to implement native streams * Implement `Blob.stream()` * Implement `Bun.file(pathOrFd).stream()` * Add an extra function * [fs.readFile] Improve performance * make jsc bindings a little easier to work with * fix segfault * faster async/await + readablestream optimizations * WebKit updates * More WebKit updates * Add releaseWEakrefs binding * `bun:jsc` * More streams * Update streams.test.js * Update Makefile * Update mimalloc * Update WebKit * Create bun-jsc.test.js * Faster ReadableStream * Fix off by one & exceptions * Handle empty files/blobs * Update streams.test.js * Move streams to it's own file * temp * impl #1 * take two * good enough for now * Implement `readableStreamToArray`, `readableStreamToArrayBuffer`, `concatArrayBuffers` * jsxOptimizationInlining * Fix crash * Add `jsxOptimizationInline` to Bun.Transpiler * Update Transpiler types * Update js_ast.zig * Automatically choose production mode when NODE_ENV="production" * Update cli.zig * [jsx] Handle defaultProps when inlining * Update transpiler.test.js * uncomment some tests Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-05-30 | Remove generated files from git index (#182) | 1 | -783/+0 | ||
2022-05-10 | [bun.js] Implement `Buffer.byteLength` | 1 | -1/+1 | ||
2022-05-08 | Upgrade WebKit | 1 | -1/+1 | ||
2022-05-05 | it can call functions | 1 | -274/+229 | ||
2022-05-03 | [bun:ffi] fix panic in lib.close() | 1 | -1/+1 | ||
2022-05-02 | [bun:ffi] Support `i64` and `u64` | 1 | -4/+7 | ||
2022-05-02 | [bun:ffi] cleanup | 1 | -1/+1 | ||
2022-04-30 | [bun.js] Implement `Buffer.from` and `Buffer.copy` | 1 | -1/+1 | ||
2022-04-29 | add more to buffer implementation | 1 | -1/+1 | ||
2022-04-25 | some of buffer | 1 | -1/+1 | ||
2022-04-23 | Bump build | 1 | -1/+1 | ||
2022-04-07 | add GC output constraints | 1 | -1/+1 | ||
I don't fully understand what this does but it sounds good! | |||||
2022-04-01 | Make `FetchHeaders` workjarred/fetchheaders | 1 | -4/+7 | ||
2022-04-01 | [bun.js] Use `Headers` from WebKit instead of custom | 1 | -3/+24 | ||
2022-03-31 | Bugfixes to how we build WebCore code | 1 | -1/+1 | ||
2022-03-30 | [bun.js] Support `file://` URLs in node fs | 1 | -1/+9 | ||
2022-03-27 | Begin adding WebCore classes to bun | 1 | -3/+3 | ||
2022-03-26 | improve performance of accessing `Bun.Transpiler` and `Bun.unsafe` | 1 | -0/+2 | ||
2022-03-24 | clang-format | 1 | -222/+267 | ||
2022-03-23 | [bun.js] Bun.write for macOS | 1 | -1/+3 | ||
2022-03-22 | Handle integer sizes greater than i32 | 1 | -1/+2 | ||
2022-03-21 | [bun.js] 1/? Implement `Response.file` | 1 | -2/+4 | ||
2022-03-20 | the events, they loop | 1 | -1/+2 | ||
2022-03-18 | [bun.js] Fix missing `.prototype` on builtins | 1 | -1/+3 | ||
2022-03-16 | Fix crash from checking if something is an object when it is undefinedbun-v0.0.72 | 1 | -4/+1 | ||
2022-03-16 | cleanup error printing | 1 | -1/+1 | ||
2022-03-14 | Fix a couple memory leaks in `bun dev` | 1 | -1/+2 | ||
2022-03-14 | Reference-counting for `Blob` and `Headers` | 1 | -1/+2 | ||
2022-03-13 | [bun.js] Implement `Blob` | 1 | -1/+3 | ||
2022-03-12 | [Bun.js] Implement `HTMLRewriter` | 1 | -3/+4 | ||
https://developers.cloudflare.com/workers/runtime-apis/html-rewriter | |||||
2022-03-10 | console.log(<JSX>) support | 1 | -263/+221 | ||
2022-03-02 | [bun.js] Add `Bun.inspect` – like util.inspect() | 1 | -224/+263 | ||
2022-02-24 | Add WASM modules but disable it for now | 1 | -2/+2 | ||
2022-02-24 | [Web Platform] Implement TextEncoder & TextDecoder | 1 | -270/+225 | ||
2022-02-22 | Make format consistent with WebKit | 1 | -222/+269 | ||
2022-02-21 | upgrade to latest JSC | 1 | -1/+1 | ||
2022-02-21 | upgrade JSC | 1 | -1/+1 | ||
2022-02-18 | [Bun.js] Add a stub for `setTimeout`, `setInterval`, `clearTImeout`, ↵ | 1 | -1/+14 | ||
`clearInterval` | |||||
2022-02-03 | Support loading multiple entry points by changing what `bun:main` points to | 1 | -1/+2 | ||
2022-02-02 | "path" module from Node.js implementation | 1 | -1/+20 | ||