summaryrefslogtreecommitdiff
path: root/tools/deno_tcp_proxy.ts
AgeCommit message (Collapse)Author
2020-01-18rename dial to connect and dialTLS to connectTLS (#3710)Bartek IwaƄczuk
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-06-07http benchmarks with unique ports (#2471)Kurt Mackey
2019-06-06add tcp proxy benchmarks + split out website section for proxy req/s (#2464)Kurt Mackey