Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-27 | Support zero-copy data in libdeno.send(). (#838) | Ryan Dahl | |
This is a large API refactor of deno.h which replaces deno_send() and deno_set_response() with deno_respond(). It also adds a req_id parameter to the deno_recv_cb. Make writeFile/writeFileSync use it. | |||
2018-09-25 | console.warn goes to stderr (#810) | Kevin (Kun) "Kassimo" Qian | |
2018-09-24 | libdeno.send(): Use GetContents instead of Externalize | Ryan Dahl | |
Fixes #744. | |||
2018-09-22 | Rename deno.argv, libdeno::DenoC and deno_set_flags (#796) | ztplz | |
2018-09-17 | Upgrade V8 to 7.0.276.15 | 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-08-30 | Fix warnings. | Ryan Dahl | |
Ref #374 | |||
2018-08-26 | format | Bert Belder | |
2018-08-26 | build: do not bake absolute paths into deno_ns | Bert Belder | |
2018-08-26 | libdeno: add file utilities Dirname() and ExePath() | Bert Belder | |
2018-08-26 | refactor: add and use libdeno.setGlobalErrorHandler instead of window.onerror | Yoshiya Hinosawa | |
2018-08-19 | chore: move libdeno files to //libdeno/ | Yoshiya Hinosawa | |