The Deno Standard Library
Go to file
2023-07-04 15:56:59 +09:00
_tools BREAKING(semver): rewrite semver (#3385) 2023-06-12 12:47:03 +09:00
_util Remove std/node, it was merged into Deno itself (#3206) 2023-02-22 10:28:55 -05:00
.devcontainer chore: add development container configuration (#1938) 2022-02-21 14:23:43 +11:00
.github chore(ci): add Dependabot (#3475) 2023-07-04 15:56:59 +09:00
archive refactor(archive/tar): improve clean function (#3431) 2023-06-07 20:37:10 +09:00
async chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
bytes chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
collections chore: fix lint errors (#3470) 2023-06-28 17:06:55 +09:00
console feat(console): add unicodeWidth for TTY text layout (#3297) 2023-04-18 16:13:58 +09:00
crypto feat(crypto): add BLAKE2B-224 hashing algorithm in crypto (#3392) 2023-05-31 14:16:30 +09:00
csv chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
datetime fix(datetime/day_of_year): respect time zone of date (#3443) 2023-06-14 21:26:29 +09:00
dotenv chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
encoding chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
examples chore: update assertions following Deno.inspect change (#3345) 2023-05-01 08:28:36 +09:00
flags fix(flags): correctly collect default value (#3380) 2023-05-15 15:14:16 +09:00
fmt chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
front_matter feat(front_matter): support +++ for TOML block (#3254) 2023-03-17 16:18:01 +09:00
fs chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
html feat(html): add escape and unescape functions for HTML entities (#3335) 2023-05-31 08:49:16 +09:00
http chore: fix type errors caused by canary (#3477) 2023-07-04 13:57:05 +09:00
io chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
json fix(json): allow primitives at top level without separator (#3466) 2023-06-27 10:32:01 +09:00
jsonc chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
log chore: update copyright header (#3082) 2023-01-03 19:47:44 +09:00
media_types chore(tools): improved web-compatibility checks (#3263) 2023-03-18 21:36:00 +09:00
path BREAKING(csv,http,path): remove deprecated APIs (#3418) 2023-06-01 23:13:50 +09:00
permissions chore: update copyright header (#3082) 2023-01-03 19:47:44 +09:00
regexp feat(regexp): add escape function (#3334) 2023-05-11 16:26:51 +09:00
semver chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
signal test(signal): avoid using SIGINT in signal testing (#3286) 2023-03-29 18:24:29 +09:00
streams fix(streams/mergeReadableStreams): better error handling (#3395) 2023-05-30 19:46:57 +09:00
testing fix(testing/asserts): handle primitive/null values better in assertObjectMatch (#3468) 2023-06-30 17:38:26 +09:00
toml chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
uuid feat(uuid): add pre-defined namespace UUIDs (#3352) 2023-05-02 23:51:43 +09:00
wasi chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
yaml fix(yaml): parse always return null when file is empty, whitespace or only comments (#3442) 2023-06-15 19:35:50 +09:00
.editorconfig chore(node): add asn1.js (#1971) 2022-02-28 20:55:56 +09:00
.gitattributes Remove std/node, it was merged into Deno itself (#3206) 2023-02-22 10:28:55 -05:00
.gitignore feat(console): add unicodeWidth for TTY text layout (#3297) 2023-04-18 16:13:58 +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: cleanup deno.json (#3474) 2023-07-04 14:05:54 +09:00
LICENSE chore: update copyright header (#1871) 2022-02-02 23:21:39 +09:00
README.md ci: add spell-checking with typos (#3459) 2023-06-26 15:23:09 +09:00
Releases.md chore: fix typos (#3458) 2023-06-22 01:27:37 +09:00
types.d.ts chore(tools): improved web-compatibility checks (#3263) 2023-03-18 21:36:00 +09:00
version.ts 0.192.0 (#3449) 2023-06-15 23:22:00 +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.
  • (optionally) check for typos with deno task typos (requires typos to be installed)

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.

About CI checks:

We currently have 6 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
  • lint
  • wasm crypto check
  • CLA

For maintainers:

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

Internal Assertions

All internal non-test code, that is files that do not have test or bench in the name, must use the assertion functions within _utils/asserts.ts and not testing/asserts.ts. This is to create a separation of concerns between internal and testing assertions.

Types

Deno is moving away from non-native IO functions and interfaces in favor of the Streams API. These types are to be defined here, in the Standard Library, instead of in the Deno namespace in the future. As a rule, use the following corresponding and identical types from types.d.ts:

  • Deno.Reader
  • Deno.Writer
  • Deno.ReaderSync
  • Deno.WriterSync
  • Deno.Closer

See the tracking issue here.