deno/std
2020-10-23 12:19:38 +11:00
..
_util feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
archive fix(std/tar): fix constant condition (#8010) 2020-10-19 13:33:51 +02:00
async docs: end sentences with a period in markdown (#7813) 2020-10-04 07:19:11 +11:00
bytes docs(std/bytes): add missing docs to README (#7885) 2020-10-08 15:39:02 -04:00
datetime test(std/datetime): test datetime constants (#8068) 2020-10-23 10:14:57 +11:00
encoding fix(std/encoding): base64 properly encodes mbc and handles Uint8Arrays (#7807) 2020-10-13 12:12:10 +11:00
examples feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
flags docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
fmt docs: end sentences with a period in markdown (#7813) 2020-10-04 07:19:11 +11:00
fs docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
hash upgrade: deno_doc, deno_lint, dprint, swc (#8077) 2020-10-22 20:36:06 +02:00
http docs: fix command examples use outdated default file_server port (#8062) 2020-10-22 17:17:38 +02:00
io fix(std/io): remove trivial internal util.ts module (#8032) 2020-10-20 13:51:57 +02:00
jwt docs(std/jwt): Fix examples (#8044) 2020-10-20 13:59:10 +02:00
log docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
mime fix(std/io): remove trivial internal util.ts module (#8032) 2020-10-20 13:51:57 +02:00
node upgrade: deno_doc, deno_lint, dprint, swc (#8077) 2020-10-22 20:36:06 +02:00
path docs(std/path): fix typo in globToRegExp docs (#8081) 2020-10-23 12:19:38 +11:00
permissions Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
signal docs: end sentences with a period in markdown (#7813) 2020-10-04 07:19:11 +11:00
testing feat(std/testing): Add support for object assertion against object subset (#8001) 2020-10-21 18:53:27 +02:00
textproto chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
uuid docs(std/uuid): creat -> create (#8064) 2020-10-22 14:03:54 +11:00
wasi test(std/wasi): reduce test duplication (#8053) 2020-10-20 22:54:27 +02:00
ws docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02: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(unstable): revert "enable importsNotUsedAsValues by default #7413" (#7800) 2020-10-03 16:40:26 +02:00
version.ts v1.4.5 2020-10-08 14:20:18 +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 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.