deno/std
2021-01-07 05:51:15 -05:00
..
_util refactor(std): remove unnecessary back direction for import (#8403) 2020-11-17 10:24:21 +11:00
archive style(std/archive): add default value on argument (#8582) 2020-12-02 09:19:30 +11:00
async docs(std/async): fix a couple typos in std/async/README.md (#8388) 2020-11-15 13:57:36 +01:00
bytes BREAKING(std/bytes): Adjust APIs based on std-wg discussion (#8612) 2020-12-06 09:51:13 -05:00
datetime fix(std/datetime): partsToDate (#8553) 2020-12-12 14:21:48 +01:00
encoding docs: Remove outdated information about third_party/ directory (#8973) 2021-01-04 18:13:53 +01:00
examples Remove emoji from welcome script so it looks better on windows (#9031) 2021-01-07 05:51:15 -05:00
flags build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
fmt fix(std): Don't use JSDoc syntax for browser-compatibility headers (#8960) 2021-01-02 10:17:01 -05:00
fs feat(std/fs): Re-enable followSymlinks on walk() (#8479) 2020-11-30 09:34:36 -05:00
hash feat(std/hash): add the sha1Hmac (#8418) 2020-11-19 07:09:30 -05:00
http fix(std/http): Use ES private fields in server (#8981) 2021-01-06 08:55:08 -05:00
io docs: fix naming in std/io usage example (#8700) 2020-12-10 14:22:09 +11:00
log feat(std/log): Log error stack (#8401) 2020-11-19 06:58:53 -05:00
mime typo (#8998) 2021-01-05 11:24:24 -05:00
node fix(std/node): resolve files in symlinked directories (#8840) 2021-01-06 00:42:40 +01:00
path fix(std): Don't use JSDoc syntax for browser-compatibility headers (#8960) 2021-01-02 10:17:01 -05:00
permissions BREAKING(unstable): Use hosts for net allowlists (#8845) 2020-12-30 23:35:28 +01:00
signal build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
testing fix(std): Don't use JSDoc syntax for browser-compatibility headers (#8960) 2021-01-02 10:17:01 -05: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 BREAKING(std/wasi): return exit code from start (#9022) 2021-01-06 05:29:55 -05:00
ws BREAKING(std/bytes): Adjust APIs based on std-wg discussion (#8612) 2020-12-06 09:51:13 -05:00
README.md chore(std): edit style guide link to deno manual (#6490) 2020-07-14 14:54:13 +02:00
version.ts v1.6.3 2020-12-30 16:13:42 +01: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.