summaryrefslogtreecommitdiff
path: root/js/deps/https/deno.land
AgeCommit message (Collapse)Author
2019-10-04Move deno_std to a more convenient location. (#3057)Ryan Dahl
js/deps/https/deno.land/std -> js/std
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-06-24Upgrade deno_std (#2565)Ryan Dahl
2019-05-20Upgrade deno_std (#2378)Ryan Dahl
2019-05-15Upgrade deno_stdRyan Dahl
2019-04-13Upgrade deno_std (#2111)Ryan Dahl
2019-04-09upgrade deno_std & add workaround prettier issue (#2087)Yoshiya Hinosawa
2019-03-07Upgrade deno_std to 395392 (#1902)Ryan Dahl
2019-03-06Upgrade deno_std (#1892)Ryan Dahl
A major API change was that asserts are imported from testing/asserts.ts now rather than testing/mod.ts and assertEqual as renamed to assertEquals to conform to what is most common in JavaScript.
2019-03-06Replace deno.land/x/std with deno.land/std (#1890)Andy Hayden
2019-02-25Upgrade deno_std (#1833)Ryan Dahl
2019-02-02Upgrade deno_std for std/prettier/main.tsRyan Dahl
2019-01-31Upgrade deno_std to bef7ba (#1609)Ryan Dahl
2019-01-10Upgrade deno_std submodule.Ryan Dahl
2019-01-03Move testing module to deno_std (#1451)Ryan Dahl
Upgrades deno_std submodule.
2018-12-31Upgrade deno_stdRyan Dahl
2018-12-24deno_net -> deno_std renameRyan Dahl
Also don't format external js/deps
2018-12-07Add benchmark for net/http (#1289)Bartek IwaƄczuk