1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/std
2020-09-23 14:09:09 -04:00
..
_util chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
archive chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
async chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
bytes doc(std/bytes): Fix wrong import in the example code (copyBytes) (#6787) 2020-07-18 15:06:42 -04:00
datetime chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
encoding chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
examples chore: add copyright (#7593) 2020-09-21 08:26:41 -04: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 fix(std/fs): mark createWalkEntry(Sync) as internal (#7643) 2020-09-23 14:09:09 -04:00
hash chore(std/hash): update crates (#7631) 2020-09-22 23:03:11 +02:00
http chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
io chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
log docs(std/log): update example (#7157) 2020-08-27 11:03:49 +02:00
mime chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
node feat(std/node): implement getSystemErrorName() (#7624) 2020-09-22 16:07:35 -04:00
path chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
permissions Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
signal chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
testing chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
textproto chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
uuid chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
wasi test(std/wasi): add fd_renumber test (#7574) 2020-09-21 15:17:01 +02:00
ws chore: add copyright (#7593) 2020-09-21 08:26:41 -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 feat(unstable): enable importsNotUsedAsValues by default (#7413) 2020-09-11 16:22:10 +02:00
version.ts chore: add copyright (#7593) 2020-09-21 08:26:41 -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.