Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-05 | Add Event web API (#1059) | Adam Conrad | |
2018-12-23 | runtime arg check `URLSearchParams` (#1390) | 迷渡 | |
2018-12-23 | Remove support for extensionless import (#1396) | Ryan Dahl | |
2018-11-16 | First pass at running subprocesses (#1156) | Bert Belder | |
2018-11-16 | Support uploading data from fetch() | Ryan Dahl | |
Does not yet support streaming, only strings and TypedArrays for now. | |||
2018-10-23 | Make Headers more idiomatic (#1062) | Kitson Kelly | |
2018-10-20 | Format. | Ryan Dahl | |
2018-10-19 | Make fetch header compliant with the current spec (#1019) | ztplz | |
2018-10-14 | Align JSDoc to style guide. | Kitson Kelly | |
2018-10-05 | Implement closeRead/closeWrite using TcpStream::shutdown (#903) | Kevin (Kun) "Kassimo" Qian | |
2018-09-14 | Make fetch.blob() work | Parsa Ghadimi | |
2018-09-14 | Implement Blob | Parsa Ghadimi | |
2018-09-14 | fix command line flag in the comment | justjavac | |
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-05 | Mark APIs at internal and include JSDoc in types | Kitson Kelly | |
2018-08-31 | Refactor libdeno.send() code to reduce boilerplate. | Ryan Dahl | |
Also removes assignCmdId as it's currently unused. | |||
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-08-17 | Command line flag parsing (#524) | Ryan Dahl | |
In particular this allow -D for logging debug output. | |||
2018-08-15 | Use typescript strict mode (#505) | Kitson Kelly | |
2018-08-02 | Remove dispatch.ts and move assignCmdId to util.ts | Ryan Dahl | |
2018-07-24 | Change copyrights to be 'Deno authors'. | Ryan Dahl | |
2018-07-18 | Better exception output. | Ryan Dahl | |
2018-07-18 | Execute JS for the first time in Rust rewrite. | Ryan Dahl | |
Implements code_fetch handler in Rust. Add ability to embed string assets (for typescript declaration files) Remove deno_cc and deno_cc_nosnapshot targets. | |||
2018-07-06 | Use C++ to do flatbuffer parsing. | Ryan Dahl | |
- Port protobuf messages to flatbuffers. - Demo linking to rust from C++ executable. - Start using the prototype TS libraries. | |||
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. |