deno/std
2020-11-09 10:58:21 +11:00
..
_util build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
archive build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
async build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
bytes docs(std/bytes): add missing docs to README (#7885) 2020-10-08 15:39:02 -04:00
datetime build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
encoding build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
examples build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
flags build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
fmt docs(std/fmt): add JSDoc (#8278) 2020-11-07 09:05:37 -05:00
fs docs: fix typo in std/fs README.md (#8104) 2020-11-02 18:33:13 +01:00
hash build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
http fix: path traversal in std/http/file_server.ts (#8134) 2020-10-27 11:48:45 +01:00
io docs(std): add some missing JSDoc (#7765) 2020-11-06 13:33:59 +11:00
log docs(std): add some missing JSDoc (#7765) 2020-11-06 13:33:59 +11:00
mime build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
node fix(std/node): only define Node.js globals when loading std/node/global (#8281) 2020-11-07 20:27:07 +01:00
path docs(std): add some missing JSDoc (#7765) 2020-11-06 13:33:59 +11:00
permissions Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
signal build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
testing build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
textproto chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
uuid build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
wasi feat(std/wasi): add start method to Context (#8141) 2020-11-02 18:50:45 +01: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.5.2 (#8301) 2020-11-09 10:58:21 +11: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.