The Deno Standard Library
Go to file
2022-09-29 11:27:10 -04:00
_tools chore(tools/check_deprecation): use deno_doc for jsdoc parsing (#2661) 2022-09-16 11:34:50 +09:00
_util chore(http): remove deprecated APIs (#2712) 2022-09-29 11:25:18 -04:00
.devcontainer chore: add development container configuration (#1938) 2022-02-21 14:23:43 +11:00
.github chore(tools): add deprecation check (#2613) 2022-09-15 16:06:04 +09:00
archive chore: remove void and Promise<void> return types (#2550) 2022-08-24 10:21:57 +09:00
async fix(async): restore delay browser compatibility (#2625) 2022-09-07 20:19:59 +09:00
bytes chore(testing/bench): remove deprecated APIs (#2714) 2022-09-29 11:27:10 -04:00
collections chore(collections): remove deprecated APIs (#2711) 2022-09-29 11:24:28 -04:00
crypto refactor: move varint and crypto wasm dirs (#2618) 2022-09-12 14:32:33 +09:00
datetime chore: remove void and Promise<void> return types (#2550) 2022-08-24 10:21:57 +09:00
dotenv docs(dotenv): added missing permission flag in example (#2646) 2022-09-13 17:16:43 +09:00
encoding chore(tools): add deprecation check (#2613) 2022-09-15 16:06:04 +09:00
examples chore(http): remove deprecated APIs (#2712) 2022-09-29 11:25:18 -04:00
flags chore: update format (#2641) 2022-09-12 09:16:37 -04:00
fmt chore: remove void and Promise<void> return types (#2550) 2022-08-24 10:21:57 +09:00
fs test(fs/walk): add test for fifo file (#1793) 2022-09-26 15:58:53 +09:00
hash chore(tools): add deprecation check (#2613) 2022-09-15 16:06:04 +09:00
http chore(http): remove deprecated APIs (#2712) 2022-09-29 11:25:18 -04:00
io chore(tools): add deprecation check (#2613) 2022-09-15 16:06:04 +09:00
log fix(log): make setup and destroy sync (#2532) 2022-09-08 17:21:26 +09:00
media_types chore: remove void and Promise<void> return types (#2550) 2022-08-24 10:21:57 +09:00
node fix(node/process): Deno 1.26 replaced Deno.setRaw with Deno.stdin.setRaw (#2710) 2022-09-29 10:55:33 -04:00
path chore: remove void and Promise<void> return types (#2550) 2022-08-24 10:21:57 +09:00
permissions chore: Update top level module JSDocs (#2343) 2022-06-14 11:20:56 +02:00
semver chore: remove void and Promise<void> return types (#2550) 2022-08-24 10:21:57 +09:00
signal chore: remove void and Promise<void> return types (#2550) 2022-08-24 10:21:57 +09:00
streams chore(tools): add deprecation check (#2613) 2022-09-15 16:06:04 +09:00
testing chore(testing/bench): remove deprecated APIs (#2714) 2022-09-29 11:27:10 -04:00
textproto chore(tools): add deprecation check (#2613) 2022-09-15 16:06:04 +09:00
uuid chore(tools): add deprecation check (#2613) 2022-09-15 16:06:04 +09:00
wasi chore: remove _deno_unstable.ts (#2600) 2022-09-05 13:55:53 +09:00
.editorconfig chore(node): add asn1.js (#1971) 2022-02-28 20:55:56 +09:00
.gitattributes chore: try to disable language stats for node/ directory (#2063) 2022-03-25 17:16:47 +01:00
.gitignore refactor: move varint and crypto wasm dirs (#2618) 2022-09-12 14:32:33 +09:00
.gitmodules chore: Setup CI and tests 2021-02-01 12:20:35 +01:00
browser-compat.tsconfig.json fix: improve type safety for browser-compatible modules (#995) 2021-07-06 11:15:37 +09:00
deno.json chore: fix lint:deprecations typo within lint task (#2691) 2022-09-23 19:15:11 +09:00
LICENSE chore: update copyright header (#1871) 2022-02-02 23:21:39 +09:00
README.md chore(ci): clean up Doctest /node step in CI (#2629) 2022-09-08 14:00:44 +09:00
Releases.md 0.158.0 (#2708) 2022-09-28 23:19:40 +02:00
test_import_map.json chore: remove outdated std import (#2627) 2022-09-07 20:18:44 +09:00
version.ts 0.158.0 (#2708) 2022-09-28 23:19:40 +02:00

Deno Standard Modules

codecov

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!

Releases

Standard library is currently tagged independently of Deno version. This will change once the library is stabilized.

To check compatibility of different version of standard library with Deno CLI see this list.

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

NOTE: This repository was unarchived and synced on Feb, 1st, 2021. If you already had it cloned, we suggest to do a fresh clone to avoid git conflicts.

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.

Opening a pull request

After cloning don't forget to git submodule update --init.

Before opening a PR make sure to:

  • have the latest Deno version installed locally
  • add tests that cover your changes.
  • deno task test passes.
  • deno fmt --check passes.
  • deno task lint passes.

Give the PR a descriptive title.

Examples of good titles:

  • fix(http): Fix race condition in server
  • docs(fmt): Update docstrings
  • feat(log): Handle nested messages

Examples of bad titles:

  • fix #7123
  • update docs
  • fix bugs

Ensure there is a related issue and it is referenced in the PR text.

For contributions to the Node compatibility library please check the std/node contributing guide

About CI checks:

We currently have 9 checks on CI. Each PR should pass all of these checks to be accepted.

  • test with Deno canary on Windows
  • test with Deno canary on Linux
  • test with Deno canary on macOS
  • test Node polyfill with Deno canary on Windows
  • test Node polyfill with Deno canary on Linux
  • test Node polyfill with Deno canary on macOS
  • lint
  • wasm crypto check
  • CLA

For maintainers:

To release a new version a tag in the form of x.y.z should be added.