deno/std
Fabriece Sumuni ceb7aae8ef fix typo
2020-01-23 10:40:26 -05:00
..
archive Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
bytes Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
datetime Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
encoding change copyrights from 2019 to 2020 (#3733) 2020-01-21 10:01:55 -05:00
examples Revert "feat(flags): script arguments come after '--'" (#3681) 2020-01-15 19:21:35 -05:00
flags Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
fmt Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
fs std/http: allow response body to be string (#3705) 2020-01-17 18:44:35 -05:00
http change copyrights from 2019 to 2020 (#3733) 2020-01-21 10:01:55 -05:00
installer Revert "feat(flags): script arguments come after '--'" (#3681) 2020-01-15 19:21:35 -05:00
io fix: Deno.mkdir should conform to style guide (#3617) 2020-01-07 14:14:33 -05:00
log Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
media_types Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
mime Remove std/multipart (#3647) 2020-01-10 12:29:09 -07:00
node feat(std/node): Added node timers builtin (#3634) 2020-01-15 14:13:12 -05:00
path std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
prettier Revert "feat(flags): script arguments come after '--'" (#3681) 2020-01-15 19:21:35 -05:00
strings fix typo 2020-01-23 10:40:26 -05:00
testing feat: Deno.args now does not include script (#3628) 2020-01-09 11:37:01 -07:00
textproto Update to TypeScript 3.7 (#3275) 2019-11-13 13:42:34 -05:00
util Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
uuid change copyrights from 2019 to 2020 (#3733) 2020-01-21 10:01:55 -05:00
ws rename dial to connect and dialTLS to connectTLS (#3710) 2020-01-18 18:35:12 +01:00
manual.md Update manual.md (#3734) 2020-01-21 10:12:19 -05:00
README.md Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
style_guide.md Happy new year! (#3578) 2020-01-02 15:13:47 -05:00

Deno Standard Modules

These modules do not have external dependencies and they are reviewed by the Deno core team. The intention is to have a standard set of high quality code that all Deno projects can use fearlessly.

Contributions are welcome!

How to use

These modules are tagged in accordance with Deno releases. So, for example, the v0.3.0 tag is guaranteed to work with deno v0.3.0. You can link to v0.3.0 using the URL https://deno.land/std@v0.3.0/

It's strongly recommended that you link to tagged releases rather than the master branch. The project is still young and we expect disruptive renames in the future.

Documentation

Here are the dedicated documentations of modules:

Contributing

deno_std is a loose port of Go's standard library. When in doubt, simply port Go's source code, documentation, and tests. There are many times when the nature of JavaScript, TypeScript, or Deno itself justifies diverging from Go, but if possible we want to leverage the energy that went into building Go. We generally welcome direct ports of Go's code.

Please ensure the copyright headers cite the code's origin.

Follow the style guide.