deno/std
2020-09-29 11:41:22 +02:00
..
_util feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
archive feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
async Fix typos (#7687) 2020-09-26 10:14:56 -04:00
bytes feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
datetime feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
encoding BREAKING(std/encoding/csv): improve the definition of ParseOptions (#7714) 2020-09-27 14:20:46 -04:00
examples feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
flags chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
fmt fix(cli/console): always quote and escape inspected strings (#7546) 2020-09-18 09:28:30 -04:00
fs feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
hash feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
http feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
io feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
log feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
mime feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
node feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
path feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
permissions Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
signal feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
testing feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
textproto chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
uuid feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
wasi chore(std/wasi): enable and fix lint errors in snapshot_preview1 (#7360) 2020-09-29 11:41:22 +02:00
ws feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +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): enable importsNotUsedAsValues by default (#7413) 2020-09-11 16:22:10 +02:00
version.ts v1.4.2 2020-09-25 16:53:48 +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.