deno/std
2020-05-06 17:04:52 -04:00
..
archive BREAKING: Remove Deno.EOF, use null instead (#4953) 2020-04-28 12:40:43 -04:00
bytes BREAKING: reorder std/io/utils copyBytes arguments (#5022) 2020-04-30 16:39:25 -04:00
datetime BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
encoding Move the docs like @param [obj.prop] to the interface. (#4974) 2020-04-28 23:26:31 +02:00
examples BREAKING: make WebSocket directly implement AsyncIterable (#5044) (#5045) 2020-05-04 12:27:06 -04:00
flags BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
fmt BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
fs BREAKING: remove CLI 'deno script.ts' hack (#5026) 2020-05-04 13:03:30 +02:00
http stabilize Deno.cwd and require --allow-read (#5068) 2020-05-04 14:23:06 -04:00
io BREAKING: reorder std/io/utils copyBytes arguments (#5022) 2020-04-30 16:39:25 -04:00
log adjust docs for std/log (#4984) 2020-04-29 09:38:44 -04:00
mime Fix MultipartReader for big files (#4865) 2020-04-29 16:38:24 -04:00
node Remove flaky and useless tests (#5116) 2020-05-06 17:04:52 -04:00
path feat(URL): Support drive letters for file URLs on Windows (#5074) 2020-05-04 14:32:54 -04:00
permissions Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
signal BREAKING: Use LLVM target triple for Deno.build (#4948) 2020-04-28 12:35:23 -04:00
testing BREAKING: Remove Deno.EOF, use null instead (#4953) 2020-04-28 12:40:43 -04:00
textproto BREAKING: Remove Deno.EOF, use null instead (#4953) 2020-04-28 12:40:43 -04:00
util Add sha256 and sha224 support (along with HMAC variants) (#5066) 2020-05-04 06:10:57 -04:00
uuid feat(std/uuid): Implement uuid v5 (#4916) 2020-04-27 08:49:34 -04:00
ws BREAKING: make WebSocket directly implement AsyncIterable (#5044) (#5045) 2020-05-04 12:27:06 -04:00
manual.md update manual with "deno run" (#5082) 2020-05-05 09:45:51 -04:00
README.md docs(std): update links to documents (#4777) 2020-04-16 11:57:49 -04:00
style_guide.md docs(std): typo fix (#5023) 2020-05-01 12:33:03 +02: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.