Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-06-22 | implement a custom websocket client | 9 | -75/+1171 | ||
2022-06-22 | It connects! but the frames are corrupt | 3 | -31/+34 | ||
2022-06-22 | WebSocket is a global | 23 | -266/+350 | ||
2022-06-22 | Fix most of the errors | 6 | -119/+117 | ||
2022-06-22 | more code | 4 | -58/+209 | ||
2022-06-22 | WIP WebSocket | 19 | -22/+3701 | ||
2022-06-20 | Group zsh completion options by type (#194) | 1 | -28/+16 | ||
2022-06-17 | Import most of `MessageEvent` from WebKit | 18 | -12/+1410 | ||
2022-06-15 | some more tests | 2 | -10/+62 | ||
2022-06-15 | Update WebKit | 1 | -0/+0 | ||
2022-06-15 | [web standards] Add `CloseEvent` from WebKit | 9 | -6/+636 | ||
2022-06-15 | Fix lazy loading internal streams | 13 | -360/+424 | ||
2022-06-15 | direct streams mostly workjarred/direct | 26 | -1167/+1782 | ||
2022-06-15 | wip direct streams | 24 | -398/+2276 | ||
2022-06-12 | ArrayBufferSink works and it's good. | 26 | -170/+2054 | ||
2022-06-12 | Fix build issue | 2 | -0/+6 | ||
2022-06-12 | Delete broken submodule | 1 | -0/+0 | ||
2022-06-10 | Update Dockerfile.base | 1 | -1/+1 | ||
2022-06-10 | Update WebKit | 1 | -0/+0 | ||
2022-06-10 | Update event_loop.zig | 1 | -0/+1 | ||
2022-06-10 | Missing errno on linux | 1 | -3/+1 | ||
2022-06-10 | Update js_parser.zig | 1 | -21/+200 | ||
2022-06-10 | Update Makefile | 1 | -4/+4 | ||
2022-06-10 | wip fix linux build | 1 | -9/+11 | ||
2022-06-10 | Don't show generic crash info when given invalid bunfig.toml | 1 | -0/+4 | ||
2022-06-10 | Update logger.zig | 1 | -0/+4 | ||
2022-06-10 | Show tracing | 1 | -1/+1 | ||
2022-06-10 | Update bunfig.zig | 1 | -0/+1 | ||
2022-06-10 | Update jest.zig | 1 | -6/+9 | ||
2022-06-09 | Update bun.d.ts | 1 | -2/+5 | ||
2022-06-09 | Add types | 1 | -2/+32 | ||
2022-06-09 | `new Response(stream).arrayBuffer()` + 3 more | 16 | -39/+478 | ||
- `new Response(stream).arrayBuffer()` - `new Response(stream).json()` - `new Response(stream).text()` - `new Response(stream).blob()` | |||||
2022-06-09 | fix some memory leaks with strings | 4 | -28/+45 | ||
2022-06-09 | Support console.log(myBigInt) | 1 | -1/+6 | ||
2022-06-09 | Fix defaultProps with JSX optimization | 6 | -34/+73 | ||
2022-06-09 | small perf improvements to encoding | 1 | -43/+37 | ||
2022-06-07 | Update event_loop.zig | 1 | -1/+2 | ||
2022-06-07 | Add fixture used in benchmark snippet | 1 | -0/+1610 | ||
2022-06-07 | Update bundler.zig | 1 | -1/+1 | ||
2022-06-07 | wip ReadableStream <> zig | 1 | -7/+58 | ||
2022-06-07 | log esm import order | 5 | -0/+30 | ||
2022-06-07 | Implement `hashCode` | 1 | -2/+21 | ||
2022-06-07 | Web Streams API (#176) | 247 | -2026/+32115 | ||
* [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 | Update .gitignore | 1 | -2/+0 | ||
2022-05-30 | Improve error messages when you mistype commands/files/scripts | 2 | -4/+39 | ||
2022-05-30 | Load `bunfig.toml` by default if `bun` or `bun {file}\.[cjt]sx?` | 2 | -4/+11 | ||
Fixes https://github.com/Jarred-Sumner/bun/issues/183 | |||||
2022-05-30 | Remove generated files from git index (#182) | 10 | -1057/+6 | ||
2022-05-20 | docs: fix typo in readme (#179) | 1 | -1/+1 | ||
2022-05-20 | Update string_mutable.zig | 1 | -0/+10 | ||
2022-05-20 | [solid] more progress, no fragments, but still not right | 37 | -217/+3469 | ||