The Deno Standard Library
Go to file
Luca Casonato db348ae388
fix: bad assumption about tls in server tests (#915)
This commit fixes a bad assumption that `connectTls` will throw on a
handshaking error. Really the TLS conn will only fail on first read or
write.
2021-05-11 22:33:28 +02:00
_util update copyright to 2021 (denoland/deno#9081) 2021-02-01 10:46:59 +00:00
.github fix: bad assumption about tls in server tests (#915) 2021-05-11 22:33:28 +02:00
archive chore: remove Promise<void> return type annotation (#819) 2021-04-05 07:49:05 -04:00
async chore: remove Promise<void> return type annotation (#819) 2021-04-05 07:49:05 -04:00
bytes fix(io): Improve readDelims() performance (#867) 2021-04-24 14:26:34 -04:00
datetime docs(datetime): fix readme example (denoland/deno#9120) 2021-02-01 10:46:59 +00:00
encoding perf(encoding/toml): delete useless replace (#900) 2021-05-07 10:15:32 +09:00
examples chore: remove Promise<void> return type annotation (#819) 2021-04-05 07:49:05 -04:00
flags test(flags): merge tests into one file (#702) 2021-02-03 11:47:32 -05:00
fmt fix(test): skip test cases which cause serde_v8 error (#828) 2021-04-02 00:28:39 +09:00
fs feat(fs/walk): show path in walk error (#875) 2021-04-30 15:49:41 +09:00
hash chore: remove Promise<void> return type annotation (#819) 2021-04-05 07:49:05 -04:00
http fix: bad assumption about tls in server tests (#915) 2021-05-11 22:33:28 +02:00
io fix(io/streams): don't use a byte ReadableStream (#891) 2021-05-03 08:32:52 +10:00
log chore: remove Promise<void> return type annotation (#819) 2021-04-05 07:49:05 -04:00
mime feat(mime/multipart): add options to readForm (#895) 2021-05-04 16:12:44 +09:00
node fix(node/stream): make Stream the default export (#901) 2021-05-07 09:21:35 +09:00
path feat(path/glob): add caseInsensitive option (#854) 2021-04-22 12:34:10 +09:00
permissions chore: remove Promise<void> return type annotation (#819) 2021-04-05 07:49:05 -04:00
signal chore: remove Promise<void> return type annotation (#819) 2021-04-05 07:49:05 -04:00
testing fix(std/testing): equals does not differentiate undefined/absent keys (#849) 2021-04-14 14:50:48 +09:00
textproto Improved textproto/mod.ts readability and maintainability (#859) 2021-04-27 09:23:06 -04:00
uuid refactor(uuid): small cleanups (#684) 2021-02-01 22:16:27 -05:00
wasi chore: remove Promise<void> return type annotation (#819) 2021-04-05 07:49:05 -04:00
ws chore: remove Promise<void> return type annotation (#819) 2021-04-05 07:49:05 -04: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(codecov): ignore coverage of examples (#798) 2021-03-17 17:30:10 +09:00
Releases.md 0.95.0 2021-04-23 16:31:14 +02:00
version.ts 0.95.0 2021-04-23 16:31:14 +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

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.