Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-03 | Support more fetch init body types (#1449) | Kevin (Kun) "Kassimo" Qian | |
2018-12-21 | Implement `Body.formData` for fetch (#1393) | Kevin (Kun) "Kassimo" Qian | |
2018-12-06 | Use alternate TextEncoder/TextDecoder implementation (#1281) | Kitson Kelly | |
This is faster and smaller. | |||
2018-11-16 | Support uploading data from fetch() | Ryan Dahl | |
Does not yet support streaming, only strings and TypedArrays for now. | |||
2018-11-14 | Support request method and headers in fetch() (#1188) | Ryan Dahl | |
Adds a general HttpHeader flatbuffer message for serializing requests and responses. | |||
2018-11-13 | Support streaming response bodies from fetch() | Ryan Dahl | |
Also Buffer.readFrom in fetch() to buffer response. | |||
2018-11-02 | Move fetch headers into its own file. | Ryan Dahl | |
2018-10-30 | Rename FetchReq op to Fetch. | Ryan Dahl | |
2018-10-23 | Make Headers more idiomatic (#1062) | Kitson Kelly | |
2018-10-21 | Implemente clone for FetchResponse (#1054) | ztplz | |
2018-10-20 | Format. | Ryan Dahl | |
2018-10-19 | Make fetch header compliant with the current spec (#1019) | ztplz | |
2018-10-17 | Optimization: Reuse ArrayBuffer during serialization. | Ryan Dahl | |
2018-10-14 | Align JSDoc to style guide. | Kitson Kelly | |
2018-10-07 | Updates to js to clean up default library | Kitson Kelly | |
2018-10-04 | Rename fbs to msg. | Ryan Dahl | |
2018-10-04 | Rename flatbuffer base.msg to base.inner | Ryan Dahl | |
This better disambiguates with the msg_generated.ts module, which in JS we call "fbs", but would be better called "msg". | |||
2018-09-30 | Improve fetch headers (#853) | ztplz | |
2018-09-14 | Make fetch.blob() work | Parsa Ghadimi | |
2018-09-14 | Rename fetch_types.d.ts to dom_types.d.ts | Parsa Ghadimi | |
2018-09-12 | Add support for fetch() headers (#727) | qti3e | |
2018-09-10 | fbs_util.ts -> dispatch.ts | Ryan Dahl | |
And send() -> sendSync() | |||
2018-09-09 | Remove namespace from src/msg.fbs | Ryan Dahl | |
2018-09-09 | Map promises onto futures. | Ryan Dahl | |
Refactors handlers.rs The idea is that all Deno "ops" (aka bindings) should map onto a Rust Future. By setting the "sync" flag in the Base message users can determine if the future is executed immediately or put on the event loop. In the case of async futures, a promise is automatically created. Errors are automatically forwarded and raised. TODO: - The file system ops in src/handler.rs are not using the thread pool yet. This will be done in the future using tokio_threadpool::blocking. That is, if you try to call them asynchronously, you will get a promise and it will act asynchronous, but currently it will be blocking. - Handlers in src/handler.rs returned boxed futures. This was to make it easy while developing. We should try to remove this allocation. | |||
2018-09-06 | Check allow-net in fetch | Parsa Ghadimi | |
2018-08-31 | Refactor libdeno.send() code to reduce boilerplate. | Ryan Dahl | |
Also removes assignCmdId as it's currently unused. | |||
2018-08-25 | Prevent circular imports in ts code (#576) | Francesco Borzì | |
2018-08-23 | fmt | Ryan Dahl | |
2018-08-20 | Fix TS errors in fetch.ts | Ryan Dahl | |
2018-08-20 | First pass at fetch() | Ryan Dahl | |
With help from Thomas Ghysels <info@thomasg.be> | |||
2018-08-19 | add notImplemented and unreachable util functions (#540) | Bartek Iwańczuk | |
2018-07-24 | Change copyrights to be 'Deno authors'. | Ryan Dahl | |
2018-07-06 | Import ts file from prototype without change | Ryan Dahl | |
From commit 559453cf6cc88283bcf8fdeccd387458f5c63165 Excluding v8worker.d.ts, main.ts, and deno.d.ts. Updates tslint.json to be original settings. |