summaryrefslogtreecommitdiff
path: root/tools/deno_tcp.ts
AgeCommit message (Collapse)Author
2020-04-28BREAKING: Remove Deno.EOF, use null instead (#4953)Nayeem Rahman
2020-03-23feat: Support Unix Domain Sockets (#4176)João Souto
2020-01-09feat: Deno.args now does not include script (#3628)Ry Dahl
Previously Deno.args was ["script.js", "arg1", "arg2"] Now it is just ["arg1", "arg2"] BREAKING CHANGE
2019-10-28Use top-level for-await in various places (#3217)Andy Hayden
2019-09-20dial/listen API change (#3000)Ryan Dahl
Previously: dial("tcp", "deno.land:80") Now: dial({ hostname: "deno.land", port: 80, transport: "tcp" }) Similarly with listen().
2019-07-06io: change Reader interface (#2591)Yoshiya Hinosawa
Instead of returning { nread: number, eof: bool }, read() returns EOF | number.
2019-05-14Rename HTTP benchmarks (#2350)Ryan Dahl