deno/std
Nikolai Vavilov 61c5bb86db
Bump required VS version (#3940)
deno builds successfully with VS2019, so no need to require VS2017.
2020-02-09 10:07:37 -06:00
..
archive remove non-null assertion operator from std (part2) (#3927) 2020-02-08 14:15:59 -06:00
bytes Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
datetime remove non-null assertion operator from std (part2) (#3927) 2020-02-08 14:15:59 -06:00
encoding remove non-null assertion operator from std (part2) (#3927) 2020-02-08 14:15:59 -06:00
examples remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
flags remove non-null assertion operator from std (part2) (#3927) 2020-02-08 14:15:59 -06:00
fmt Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
fs remove non-null assertion operator from std (part2) (#3927) 2020-02-08 14:15:59 -06:00
http reenable server tests (#3928) 2020-02-08 14:24:09 -06:00
io remove non-null assertion operator from std (part2) (#3927) 2020-02-08 14:15:59 -06:00
log remove non-null assertion operator from std (part2) (#3927) 2020-02-08 14:15:59 -06:00
media_types remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
mime remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
node feat(std/node) Endianness (#3833) 2020-01-30 18:57:29 -05:00
path remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
signal feat: add std/signal/mod.ts (#3913) 2020-02-07 01:53:15 -05:00
strings fix typo 2020-01-23 10:40:26 -05:00
testing remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
textproto remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
util remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
uuid change copyrights from 2019 to 2020 (#3733) 2020-01-21 10:01:55 -05:00
ws remove non-null assertion operator from std (part1) (#3900) 2020-02-07 02:23:38 -05:00
manual.md Bump required VS version (#3940) 2020-02-09 10:07:37 -06:00
README.md feat: dprint formatter (#3820) 2020-01-29 21:16:48 -05: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.