summaryrefslogtreecommitdiff
path: root/cli/js
AgeCommit message (Collapse)Author
2019-11-12fix url parse bug (#3316)木杉
2019-11-11Add permissions.request (#3296)Yoshiya Hinosawa
2019-11-09refactor: worker is no longer a resource (#3290)Bartek Iwańczuk
2019-11-09net: Check for closing status when iterating Listener (#3309)Nayeem Rahman
std/http/server.ts: Use listener.next() instead of listener.accept()
2019-11-04Revert "reduce redundancies in the fetch code (#3249)" (#3264)Ry Dahl
Max latency benchmark went to zero for deno_proxy. This reverts commit 65e91796720ea68d69ac7f925a8f239aee8fb19e
2019-11-04Refactor Worker and ThreadSafeState (#3242)Bartek Iwańczuk
* Split ThreadSafeState into State and GlobalState. State is a "local" state belonging to "Worker" while "GlobalState" is state shared by whole program. * Update "Worker" and ops to use "GlobalState" where applicable * Move and refactor "WorkerChannels" resource
2019-11-02reduce redundancies in the fetch code (#3249)Nick Stott
2019-10-31Upgrade node_modules, change tagline, clean up root directory (#3247)Ry Dahl
* Upgrade node_modules * Simplify tagline * Move gclient_config.py out of root * Move package.json to tools * Remove yarn.lock * Remove CONTRIBUTING.md
2019-10-31cli: replace timer map with red-black tree (#3218)Kevin (Kun) Kassimo Qian
This avoids a crash when the Deno process has been running for 2**32 ms (about 50 days). Additionaly, time complexity of finding which timer is due to fire next is reduced from from O(n) to O(log n).
2019-10-31Adds custom inspect method for URL (#3241)Sven Nicolai Viig
2019-10-31Make EOF unique symbol (#3244)Yoshiya Hinosawa
2019-10-29Remove TTY tests - dead code (#3229)Ry Dahl
2019-10-29Use top-level await in jsdoc examples (#3239)Andy Hayden
2019-10-28Prevent customInspect error from crashing console (#3226)Kevin (Kun) "Kassimo" Qian
2019-10-28Re-enable basic stream support for fetch bodies (#3192)Nick Stott
* Add sd-streams from https://github.com/stardazed/sd-streams/blob/master/packages/streams/src/ * change the interfaces in dom_types to match what sd-streams expects
2019-10-28Add CustomInspect for Headers (#3130)Rory Malcolm
Worth noting due to implementation of the Headers class the contents of headersMap have lowercase keys, although this matches the specification as header keys are case agnostic it does seem to not match behaviour of other implementations in other languages I have seen, would require some rewriting of Headers.ts
2019-10-27Use web standard Permissions API (#3200)Yoshiya Hinosawa
2019-10-27feat: top-level-for-await (#3212)Andy Hayden
2019-10-26Use a more performant utf8 decoder algorithm. (#3204)Kitson Kelly
Fixes #3163 Co-authored-by: Kitson Kelly <me@kitsonkelly.com> Co-authored-by: Qwerasd <qwerasd205@users.noreply.github.com>
2019-10-25fix: handle malformed control buffers (#3202)Bartek Iwańczuk
2019-10-24Add error handling for minimal dispatch (#3176)Bartek Iwańczuk
2019-10-24Remove old website (#3194)Ry Dahl
Move manual.md and style_guide.md into //std so they can be accessed from https://deno.land/std/manual.md Code for new website is https://github.com/denoland/deno_website2 Co-authored-by: Christian Moritz <chrmoritz@gmail.com>
2019-10-22remove --no-prompt flag, fail on missing permissions (#3183)Yoshiya Hinosawa
2019-10-21feat: Deno.listenTLS (#3152)Bartek Iwańczuk
2019-10-19Fix clearTimer bug (#3143)Ry Dahl
2019-10-19chore: remove xevalDelim from Start interface (#3147)Kevin (Kun) "Kassimo" Qian
2019-10-14perf: eager poll async ops in Isolate (#3046)Bartek Iwańczuk
2019-10-13fix: [tls] op_dial_tls is not registerd and broken (#3121)Yusuke Sakurai
2019-10-04Merge deno_cli_snapshots into deno_cli (#3064)Ryan Dahl