The Deno Standard Library
Go to file
defectivepixel 85fdc6d963
feat(node): add truncate and truncateSync (#765)
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
2021-03-03 02:18:31 +09:00
_util update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
.github test(path): update test cases for canary (#775) 2021-03-03 01:06:41 +09:00
archive chore: update copyright year (denoland/deno#9094) 2021-02-01 10:46:59 +00:00
async fix(async): make pooledMap() errors catchable (denoland/deno#9217) 2021-02-01 10:46:59 +00:00
bytes docs(bytes): improve README.md (#737) 2021-02-18 22:23:03 +09:00
datetime docs(datetime): fix readme example (denoland/deno#9120) 2021-02-01 10:46:59 +00:00
encoding refactor: fix codes to pass no-unused-vars lint (#764) 2021-03-02 15:31:37 +09:00
examples refactor: fix codes to pass no-unused-vars lint (#764) 2021-03-02 15:31:37 +09:00
flags test(flags): merge tests into one file (#702) 2021-02-03 11:47:32 -05:00
fmt refactor: fix codes to pass no-unused-vars lint (#764) 2021-03-02 15:31:37 +09:00
fs Remove unused testdata files (#744) 2021-02-19 08:11:53 -05:00
hash feat(node): add crypto.createHash (#757) 2021-02-26 03:09:39 +09:00
http refactor: fix codes to pass no-unused-vars lint (#764) 2021-03-02 15:31:37 +09:00
io BREAKING(io/streams): Strengthen iterator to readable stream conversion (#735) 2021-02-23 12:02:59 -05:00
log update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
mime BREAKING(encoding): remove module utf8.ts (#728) 2021-02-16 13:22:07 +01:00
node feat(node): add truncate and truncateSync (#765) 2021-03-03 02:18:31 +09:00
path test(path): update test cases for canary (#775) 2021-03-03 01:06:41 +09:00
permissions update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
signal chore: update copyright to 2021 (denoland/deno#9092) 2021-02-01 10:46:59 +00:00
testing refactor: fix codes to pass no-unused-vars lint (#764) 2021-03-02 15:31:37 +09:00
textproto BREAKING(encoding): remove module utf8.ts (#728) 2021-02-16 13:22:07 +01:00
uuid refactor(uuid): small cleanups (#684) 2021-02-01 22:16:27 -05:00
wasi refactor: fix codes to pass no-unused-vars lint (#764) 2021-03-02 15:31:37 +09:00
ws refactor: fix codes to pass no-unused-vars lint (#764) 2021-03-02 15:31:37 +09:00
.editorconfig add charset & trim_trailing_whitespace (#158) 2019-01-26 14:09:53 -05:00
.gitattributes chore: Setup CI and tests 2021-02-01 12:20:35 +01:00
.gitignore feat(node): support conditional exports (#726) 2021-02-17 19:06:03 +09:00
.gitmodules chore: Setup CI and tests 2021-02-01 12:20:35 +01:00
LICENSE chore: update README and LICENSE (#634) 2021-02-01 12:43:02 +01:00
README.md chore: fix typo in contributing section (#709) 2021-02-14 13:23:58 +01:00
Releases.md 0.88.0 2021-02-19 08:14:38 -05:00
version.ts 0.88.0 2021-02-19 08:14:38 -05: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!

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

Before opening a PR make sure to:

  • there are tests that cover the changes.
  • deno test --unstable --allow-all passes.
  • deno fmt --check passes without changing files.
  • deno lint --unstable passes.

Give the PR a descriptive title.

Examples of good title:

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

Examples of bad title:

  • 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

For maintainers:

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