deno/std
2020-07-05 18:03:34 -04: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 Update std/http/cookie types to not require full ServerRequest object (#6577) 2020-06-30 09:08:40 -04:00
io fix(std/io): export streams.ts & added docs (#6535) 2020-06-27 20:20:48 -04:00
log fix(std/log): print "{msg}" when log an empty line (#6381) 2020-06-30 11:29:26 +02:00
mime refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
node fix(std/node): add encoding argument to Buffer.byteLength (#6639) 2020-07-05 18:02:09 -04:00
path upgrade: swc_ecma_visit, dprint, deno_lint (#6580) 2020-07-01 16:04:56 +02: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 improve(std/asserts): allow assert functions to specify type parameter (#6413) 2020-07-02 18:03:15 +02: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): explicitly assert each expected arg (#6633) 2020-07-05 18:03:34 -04:00
ws refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
README.md docs(std): update paragraph about the tagging process (#6519) 2020-06-28 12:25:20 -04:00
version.ts v1.1.3 2020-07-03 15:35:19 -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 will eventually be tagged in accordance with Deno releases but as of today we do not yet consider them stable and so we version the standard modules differently from the Deno runtime to reflect this.

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

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.