deno/std
2019-10-27 11:22:53 -04:00
..
archive std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
bundle Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
bytes Move everything into std subdir 2019-10-09 17:10:09 -04:00
datetime Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
encoding std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
examples feat: top-level-for-await (#3212) 2019-10-27 09:04:42 -04:00
flags std/flags: Add test for multiple boolean flags (#3103) 2019-10-16 11:34:36 -04:00
fmt Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
fs std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
http feat: top-level-for-await (#3212) 2019-10-27 09:04:42 -04:00
installer Reenable std tests that were disabled during merge (#3159) 2019-10-21 11:58:45 -04:00
io std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
log Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
media_types std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
mime std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
multipart Move everything into std subdir 2019-10-09 17:10:09 -04:00
path std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
prettier Reenable std tests that were disabled during merge (#3159) 2019-10-21 11:58:45 -04:00
strings Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
testing std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
textproto Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
util Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
uuid Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
ws feat: top-level-for-await (#3212) 2019-10-27 09:04:42 -04:00
xeval Move everything into std subdir 2019-10-09 17:10:09 -04:00
manual.md Use web standard Permissions API (#3200) 2019-10-27 11:22:53 -04:00
README.md Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
style_guide.md Change magic table-of-contents thing (#3197) 2019-10-24 17:58:57 -04:00
tsconfig.json Move everything into std subdir 2019-10-09 17:10:09 -04:00
tsconfig.test.json Move everything into std subdir 2019-10-09 17:10:09 -04: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.