deno/std
2020-08-31 11:10:28 +02:00
..
_util feat: update to TypeScript 4.0 (#6514) 2020-08-24 19:43:54 -04:00
archive fix(std/tar): directory type bug (#6905) 2020-07-30 12:01:31 -04:00
async feat(std/async): add pooledMap utility (#6898) 2020-07-29 02:44:34 +02:00
bytes doc(std/bytes): Fix wrong import in the example code (copyBytes) (#6787) 2020-07-18 15:06:42 -04:00
datetime test(std/datetime): port golang dayOfYear tests (#7105) 2020-08-27 11:12:49 +02:00
encoding fix(std/encoding/toml): Comment after arrays causing incorrect output (#7224) 2020-08-28 18:51:06 -04:00
examples feat: update to TypeScript 4.0 (#6514) 2020-08-24 19:43:54 -04:00
flags Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
fmt chore: remove unreachable code to pass linter (#7270) 2020-08-31 11:10:28 +02:00
fs docs(std/fs): remove stale references to readFileStr and writeFileStr (#7254) 2020-08-29 19:19:31 -04:00
hash feat: update to TypeScript 4.0 (#6514) 2020-08-24 19:43:54 -04:00
http feat(std/http): add --no-dir-listing flag to file_server (#6808) 2020-08-12 11:38:25 -04:00
io Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
log docs(std/log): update example (#7157) 2020-08-27 11:03:49 +02:00
mime Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
node fix(std/node): "events" and "util" modules (#7170) 2020-08-27 11:00:38 +02:00
path fix: Allow isolated "%"s when parsing file URLs (#7108) 2020-08-21 15:37:06 +02:00
permissions Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
signal Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
testing fix(std/testing): invalid dates assertion equality (#7230) 2020-08-28 19:59:28 -04:00
textproto Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
uuid refactor(std/uuid): remove dependency on isString from std/node (#7273) 2020-08-30 22:46:58 +02:00
wasi fix(std/wasi): invalid number to bigint conversion in fd_tell (#7215) 2020-08-27 11:38:12 +02:00
ws Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -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 fix: Make std work with isolatedModules (#7016) 2020-08-12 12:01:36 +02:00
version.ts v1.3.2 2020-08-29 09:53:13 -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.