Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-06 | Fix many of the clippy::pedantic warnings | Andy Hayden | |
2018-11-05 | Add repl (#998) | Andy Hayden | |
- Running repl from js side. - Add tests for repl behavior. - Handle ctrl-C and ctrl-D. | |||
2018-11-04 | Fix clippy warnings (#1149) | Andy Hayden | |
Run with: cargo clippy https://github.com/rust-lang-nursery/rust-clippy | |||
2018-11-02 | Rename EnvPair to KeyValue. | Ryan Dahl | |
2018-10-30 | Rename FetchReq op to Fetch. | Ryan Dahl | |
2018-10-30 | Add resources op (#1119) | Bartek Iwańczuk | |
2018-10-29 | Separate source map from output code. | Kitson Kelly | |
2018-10-27 | Ergonomics: Prompt TTY for permission escalation (#1081) | Ryan Dahl | |
2018-10-26 | Add chmod/chmodSync on unix (and fix Cargo.toml) (#1088) | Kevin (Kun) "Kassimo" Qian | |
Initial implementation by Srijan Reddy (@srijanreddy98, #672). | |||
2018-10-26 | Support https in fetch. | Ryan Dahl | |
fetch should use same hyper connector as import. | |||
2018-10-23 | Enforce media types | Kitson Kelly | |
2018-10-20 | Optimization: eager accept | Ryan Dahl | |
2018-10-20 | Optimization: eager write | Ryan Dahl | |
2018-10-20 | Optimization: eager read | Ryan Dahl | |
TCP sockets should attempt the non-blocking read in the main thread. | |||
2018-10-20 | Allow partial writes. | Ryan Dahl | |
Do not use tokio_io::io:write_all(). Adds src/tokio_write.rs | |||
2018-10-19 | Sort ops. | Ryan Dahl | |
2018-10-19 | Add missing copyrights (#1024) | ztplz | |
2018-10-17 | Optimization: Reuse ArrayBuffer during serialization. | Ryan Dahl | |
2018-10-17 | Fix a bug that copyFile reports different error codes | Jinho Bang | |
This is a workaroud. Once the issue is resolved in Rust side, we should remove it. Fixes #895 | |||
2018-10-16 | Format | Ryan Dahl | |
2018-10-15 | `deno -v` should report typescript version | Jinho Bang | |
Fixes #993 | |||
2018-10-13 | Add cwd() and chdir() (#907) | Shiva Prasanth | |
2018-10-11 | Add support for --types | Kitson Kelly | |
2018-10-11 | Add deno.metrics() | Bartek Iwańczuk | |
2018-10-10 | Rename BadFileDescriptor | J2P | |
2018-10-06 | docs: fix urls in comments | Yoshiya Hinosawa | |
2018-10-06 | Fix symlink error message | Kevin (Kun) "Kassimo" Qian | |
2018-10-05 | Replace panic with error on windows for symlink | Kevin (Kun) "Kassimo" Qian | |
2018-10-05 | Clean up helpers in src/errors.rs | Ryan Dahl | |
* Add errors::bad_resource() * Move permission_denied() to errors.rs * Make op_symlink's not_implemented() into a runtime panic. | |||
2018-10-05 | Implement closeRead/closeWrite using TcpStream::shutdown (#903) | Kevin (Kun) "Kassimo" Qian | |
2018-10-04 | Use underscores in filenames. | 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-10-04 | Rename msg_from_js() to dispatch(). | Ryan Dahl | |
2018-10-04 | Rename handler.rs to ops.rs | Ryan Dahl | |