deno/std
2020-07-14 14:26:49 -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 refactor(std/datetime): improve weekOfYear (#6741) 2020-07-14 14:23:54 -04:00
encoding feat(std/encoding): add ascii85 module (#6711) 2020-07-14 14:26:49 -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 fix(std/tesing/asserts): assertEquals/NotEquals should use milliseconds in Date (#6644) 2020-07-05 22:21:03 -04:00
hash feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
http fix(cli/js/web/url): Implement IPv4 hostname parsing (#6707) 2020-07-13 00:56:45 -04:00
io Remove unused property of StringReader (#6743) 2020-07-14 14:21:08 -04:00
log feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
mime fix(std/mime): boundary random hex values (#6646) 2020-07-05 18:23:59 -04:00
node feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
path feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
permissions Revert "feat: move unstable Deno.permissions to navigator.permissions… (#6729) 2020-07-13 18:23:24 +02:00
signal refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
testing feat(Deno.inspect): Add sorted, trailingComma, compact and iterableLimit to InspectOptions (#6591) 2020-07-11 00:52:18 -04:00
textproto feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
uuid refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
wasi test(std/wasi): add std file read and write tests (#6671) 2020-07-07 00:49:04 -04:00
ws refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
README.md chore(std): edit style guide link to deno manual (#6490) 2020-07-14 14:54:13 +02:00
tsconfig_test.json feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
version.ts v1.2.0 2020-07-13 13:00:24 -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.

Don't import any symbol with an underscore prefix: export function _baz() {}.

These elements are not considered part of the public API, thus no stability is guaranteed for them.

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.