deno/std
2020-06-27 13:49:07 +02:00
..
_util refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
archive fix(std/archive): untar (#6217) 2020-06-10 17:10:47 -04:00
async fix: MuxAsyncIterator throws muxed errors (#6295) 2020-06-15 12:03:07 -04:00
bytes refactor: shift copyBytes and tweak deps to reduce dependencies (#6469) 2020-06-25 06:40:51 -04:00
datetime feat(std/datetime): add is leap and difference functions (#4857) 2020-06-27 13:10:45 +02:00
encoding BREAKING(std/encoding/hex): reorder encode & decode arguments (#6410) 2020-06-21 00:13:54 -04:00
examples refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
flags refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
fmt typo (#6356) 2020-06-18 06:03:38 -04:00
fs docs: document and add examples of expandGlob (#6404) 2020-06-20 14:34:28 -04:00
hash perf(std/hash): optimize for speed (O3) (#6499) 2020-06-26 14:11:20 -04:00
http fix(std/http): Catch errors on file_server response.send (#6285) 2020-06-27 13:49:07 +02:00
io fix(std/io): Make BufWriter/BufWriterSync.flush write all chunks (#6269) 2020-06-25 14:17:33 +02:00
log feat(std/log): expose logger name to LogRecord (#6316) 2020-06-18 12:50:18 +02:00
mime refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
node fix(std/node/process): env, argv exports (#6455) 2020-06-25 07:18:01 -04:00
path fix(cli/js/web/url): Support UNC paths on Windows (#6418) 2020-06-26 08:34:17 -04:00
permissions refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
signal refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
testing refactor(std/testing): Remove unuseful statement (#6486) 2020-06-25 22:17:58 -04:00
textproto refactor: shift copyBytes and tweak deps to reduce dependencies (#6469) 2020-06-25 06:40:51 -04:00
uuid refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
wasi test(std/wasi): add read, write and metadata tests (#6494) 2020-06-26 15:36:46 -04:00
ws refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
README.md fix(std): fix broken style guide link (#5211) 2020-05-11 20:36:24 -04:00
version.ts v1.1.2 2020-06-26 17:45:12 -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/. Not specifying a tag will link to the master branch.

It is strongly recommended that you link to tagged releases to avoid unintended updates.

Don't link to / import any module whose path:

  • Has a name or parent with an underscore prefix: _foo.ts, _util/bar.ts.
  • Is that of a test module or test data: test.ts, foo_test.ts, testdata/bar.txt.

No stability is guaranteed for these files.

Documentation

To browse documentation for 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.