deno/std
2020-04-26 16:26:02 -04:00
..
archive BREAKING CHANGE: remove Deno.OpenMode (#4884) 2020-04-25 00:45:55 +02:00
bytes create readme for std/bytes (#4876) 2020-04-24 14:24:29 -04:00
datetime used native padStart/End where possible (#4537) 2020-03-31 12:34:13 +02:00
encoding Move encode, decode helpers to /std/encoding/utf8.ts, delete /std/strings/ (#4565) 2020-04-01 15:23:39 -04:00
examples BREAKING CHANGE: change order of args in Deno.copy() (#4885) 2020-04-25 00:09:14 +02:00
flags feat(std/flags): pass key and value to unknown (#4637) 2020-04-06 09:27:10 -04:00
fmt Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
fs BREAKING CHANGE: remove Deno.OpenMode (#4884) 2020-04-25 00:45:55 +02:00
http BREAKING CHANGE: change order of args in Deno.copy() (#4885) 2020-04-25 00:09:14 +02:00
io reorder copyN arguments to match Deno.copy (#4900) 2020-04-26 16:26:02 -04:00
log refactor(std/log): support enum log level (#4859) 2020-04-25 11:13:26 +02:00
mime reorder copyN arguments to match Deno.copy (#4900) 2020-04-26 16:26:02 -04:00
node std/node: require_ -> require (#4828) 2020-04-20 14:30:52 -04:00
path feat: Add common to std/path (#4527) 2020-03-30 11:36:55 -04:00
permissions Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
signal remove unnecessary delay in std/signal tests (#4703) 2020-04-10 22:03:41 -04:00
testing Remove std/testing/format.ts (#4749) 2020-04-15 10:12:42 -04:00
textproto Drop headers with trailing whitespace in header name (#4642) 2020-04-06 09:58:46 -04:00
util Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
uuid Implement UUID v1 (#4758) 2020-04-15 10:38:05 -04:00
ws BREAKING CHANGE: rename TLS APIs to camel case (#4888) 2020-04-24 23:29:14 +02:00
manual.md BREAKING CHANGE: rename Deno.fsEvents() to Deno.watchFs() (#4886) 2020-04-24 23:40:29 +02:00
README.md docs(std): update links to documents (#4777) 2020-04-16 11:57:49 -04:00
style_guide.md doc: Improve the style guide (#4627) 2020-04-04 13:11:43 -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.