deno/std
2020-01-08 17:40:59 -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 fix(std/encoding/yaml): export parseAll (#3592) 2020-01-04 04:26:57 -05:00
examples feat(flags): script arguments come after '--' (#3621) 2020-01-08 14:59:53 -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 feat(flags): script arguments come after '--' (#3621) 2020-01-08 14:59:53 -05:00
http feat(flags): script arguments come after '--' (#3621) 2020-01-08 14:59:53 -05:00
installer feat(flags): script arguments come after '--' (#3621) 2020-01-08 14:59:53 -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 Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
multipart Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
node std/node: better error message for read perm in require() (#3502) 2019-12-15 17:23:12 +08:00
path std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
prettier feat(flags): script arguments come after '--' (#3621) 2020-01-08 14:59:53 -05:00
strings Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
testing Happy new year! (#3578) 2020-01-02 15:13:47 -05: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 Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
ws Fix ws handshake with correctly empty search string (#3587) 2020-01-04 04:31:12 -05:00
manual.md Remove xeval subcommand (#3630) 2020-01-08 17:40:59 -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.