Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-06-22 | change the directory structurejarred/rename | 4 | -8744/+0 | ||
2022-06-15 | Fix lazy loading internal streams | 1 | -1/+1 | ||
2022-06-15 | direct streams mostly workjarred/direct | 1 | -38/+19 | ||
2022-06-15 | wip direct streams | 1 | -48/+154 | ||
2022-06-12 | ArrayBufferSink works and it's good. | 2 | -141/+894 | ||
2022-06-12 | Fix build issue | 1 | -0/+3 | ||
2022-06-10 | Missing errno on linux | 1 | -3/+1 | ||
2022-06-09 | `new Response(stream).arrayBuffer()` + 3 more | 2 | -17/+101 | ||
- `new Response(stream).arrayBuffer()` - `new Response(stream).json()` - `new Response(stream).text()` - `new Response(stream).blob()` | |||||
2022-06-07 | wip ReadableStream <> zig | 1 | -7/+58 | ||
2022-06-07 | Web Streams API (#176) | 3 | -145/+1530 | ||
* [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-10 | [bun.js] Implement `Buffer.byteLength` | 1 | -6/+104 | ||
2022-05-08 | [bun.js] Fix bug with headers not being sent in `fetch` | 1 | -0/+1 | ||
2022-04-29 | add more to buffer implementation | 1 | -51/+200 | ||
2022-04-26 | Most of Buffer.toString | 1 | -7/+115 | ||
2022-04-25 | some of buffer | 2 | -27/+699 | ||
2022-04-12 | Make sendfile more reliable | 1 | -134/+0 | ||
2022-04-12 | wip fixes to sendfile() blocking | 1 | -3/+6 | ||
2022-04-11 | work around fetch("localhost") bug | 1 | -7/+0 | ||
2022-04-08 | partial fix for the sendfile() bug | 1 | -6/+9 | ||
2022-04-07 | [bun.js] Add `baseURI` support to HTTP server | 1 | -1/+5 | ||
2022-04-06 | [bun.js] Add stdout, stderr, stdin to Bun and support sendfile() + splice() | 1 | -125/+299 | ||
2022-04-05 | Update response.zig | 1 | -1/+0 | ||
2022-04-05 | Update response.zig | 1 | -6/+12 | ||
2022-04-04 | fix bug with io sometimes sleeping permanetly | 1 | -7/+10 | ||
2022-04-04 | hm | 1 | -1/+1 | ||
2022-04-04 | Update response.zig | 1 | -1/+1 | ||
2022-04-04 | Make `Bun.file()` -> HTMLRewriter -> HTTP response work | 1 | -64/+196 | ||
2022-04-03 | Handle when unable to use sendfile() with `Bun.file` | 1 | -3/+9 | ||
2022-04-02 | Fix test failures | 1 | -11/+41 | ||
2022-04-01 | [bun.js] Bring back file resolution | 1 | -1/+3 | ||
2022-04-01 | [bun.js] slightly more careful write() | 1 | -1/+3 | ||
2022-04-01 | [bun.js] Fix double free in Blob | 1 | -1/+3 | ||
2022-04-01 | Update response.zig | 1 | -1/+1 | ||
2022-04-01 | [bun.js] Fix use-after-free in Bun.write | 1 | -3/+3 | ||
2022-04-01 | Make `FetchHeaders` workjarred/fetchheaders | 1 | -40/+34 | ||
2022-04-01 | [bun.js] Use `Headers` from WebKit instead of custom | 1 | -765/+128 | ||
2022-03-30 | don't append null bytes | 1 | -3/+2 | ||
2022-03-28 | Delete url.zig | 1 | -151/+0 | ||
2022-03-26 | Auto-set content-type | 1 | -1/+4 | ||
2022-03-26 | Fix clonefile() so it actually does run | 1 | -1/+4 | ||
2022-03-25 | fix error hanlding | 1 | -6/+22 | ||
2022-03-25 | [bun.js] configuration and error handling for HTTP server | 1 | -86/+125 | ||
2022-03-24 | Auto-detect MimeType based on file extension | 1 | -1/+17 | ||
2022-03-24 | Update response.zig | 1 | -6/+6 | ||
2022-03-23 | handle bodies of 0 length better | 1 | -14/+19 | ||
2022-03-23 | Implement Request body support! | 1 | -13/+19 | ||
2022-03-23 | Support `Request.headers` and `Request.url` in http server | 1 | -11/+57 | ||
2022-03-23 | [bun.js] Bun.write for macOS | 1 | -37/+138 | ||
2022-03-23 | [bun.js] Implement Bun.write() | 1 | -46/+832 | ||
2022-03-22 | Handle integer sizes greater than i32 | 1 | -37/+49 | ||