The Deno Standard Library
Go to file
2022-10-06 10:11:16 -04:00
_tools chore: upgrade to deno_graph@0.34.0 for circular dependency check (#2724) 2022-09-30 14:38:12 +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 BREAKING: deprecate std/textproto (#2737) 2022-10-05 20:14:39 +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 feat(collections): improve types of partition module (#2744) 2022-10-04 11:18:53 -04:00
crypto chore: upgrade wasmbuild to 0.10.0 and rust to 1.64.0 (#2721) 2022-09-30 14:22:27 +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(encoding): remove deprecated APIs (#2718) 2022-09-30 14:40:09 +09:00
examples BREAKING: deprecate std/textproto (#2737) 2022-10-05 20:14:39 +09: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 docs(fs): document the deprecation of exists and existsSync (#2730) 2022-10-03 17:52:55 +09:00
hash chore(tools): add deprecation check (#2613) 2022-09-15 16:06:04 +09:00
http fix(http): remove unnecessary delay when closing server (#2732) 2022-10-04 11:22:56 -04:00
io chore(io): remove deprecated APIs (#2713) 2022-09-29 11:29:34 -04:00
log docs(fs): document the deprecation of exists and existsSync (#2730) 2022-10-03 17:52:55 +09:00
media_types chore: remove void and Promise<void> return types (#2550) 2022-08-24 10:21:57 +09:00
node fix(node/tls): fix TLSSocket constructor (#2749) 2022-10-06 10:11:16 -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 perf(streams): memory optimizations by avoiding large buffer allocation in a loop (#2748) 2022-10-05 14:10:54 +09:00
testing chore: remove deprecated APIs across collections, streams, textproto and uuid (#2720) 2022-09-30 16:27:11 +09:00
textproto BREAKING: deprecate std/textproto (#2737) 2022-10-05 20:14:39 +09:00
uuid chore: remove deprecated APIs across collections, streams, textproto and uuid (#2720) 2022-09-30 16:27:11 +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 feat(node): new child_process.fork (#2700) 2022-09-30 01:31:37 +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: upgrade wasmbuild to 0.10.0 and rust to 1.64.0 (#2721) 2022-09-30 14:22:27 +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.