deno/std
2020-05-27 15:24:57 -04:00
..
_util BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
archive BREAKING: Remove Deno.EOF, use null instead (#4953) 2020-04-28 12:40:43 -04:00
async improve deferred test (#5459) 2020-05-15 16:59:44 -04:00
bytes feat(std/bytes): add hasSuffix and contains functions, update docs (#4801) 2020-05-20 16:32:28 +02:00
datetime BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
encoding feat(std/encoding): add base64 (#5811) 2020-05-24 09:10:01 -04:00
examples Fix shebangs (#5898) 2020-05-27 15:24:57 -04:00
flags BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
fmt fix(std/testing/asserts): Support browsers (#5847) 2020-05-25 13:32:34 -04:00
fs Provide required arguments to walk in example. (#5668) 2020-05-20 12:24:02 -04:00
hash Migrate from dprint-ignore to deno-fmt-ignore (#5659) 2020-05-27 14:21:18 +02:00
http Fix shebangs (#5898) 2020-05-27 15:24:57 -04:00
io fix: compilation error introduced by #4543 (#5673) 2020-05-20 12:15:41 -04:00
log fix(std/log): use writeAllSync instead of writeSync (#5868) 2020-05-26 09:54:30 -04:00
mime Use ts-expect-error instead of ts-ignore. (#5869) 2020-05-26 10:02:16 -04:00
node Use ts-expect-error instead of ts-ignore. (#5869) 2020-05-26 10:02:16 -04:00
path Revert "Fix definition of URL constructor (#5521)" (#5564) 2020-05-18 08:46:56 -04:00
permissions Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
signal Use ts-expect-error instead of ts-ignore. (#5869) 2020-05-26 10:02:16 -04:00
testing fix(std/testing/asserts): Support browsers (#5847) 2020-05-25 13:32:34 -04:00
textproto fix(std/io): BufReader should not share the internal buffer across reads (#4543) 2020-05-20 16:34:20 +02:00
uuid Use ts-expect-error instead of ts-ignore. (#5869) 2020-05-26 10:02:16 -04:00
ws Use ts-expect-error instead of ts-ignore. (#5869) 2020-05-26 10:02:16 -04:00
README.md fix(std): fix broken style guide link (#5211) 2020-05-11 20:36:24 -04:00
version.ts v1.0.2 2020-05-22 20:00:28 +02: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!

How to use

These modules are tagged in accordance with Deno releases. So, for example, the v0.3.0 tag is guaranteed to work with deno v0.3.0. You can link to v0.3.0 using the URL https://deno.land/std@v0.3.0/. Not specifying a tag will link to the master branch.

It is strongly recommended that you link to tagged releases to avoid unintended updates.

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.

No stability is guaranteed for these files.

Documentation

To browse documentation for modules:

Contributing

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.