deno/std
2020-06-19 14:48:14 -04:00
..
_util refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
archive fix(std/archive): untar (#6217) 2020-06-10 17:10:47 -04:00
async fix: MuxAsyncIterator throws muxed errors (#6295) 2020-06-15 12:03:07 -04:00
bytes feat(std/bytes): add hasSuffix and contains functions, update docs (#4801) 2020-05-20 16:32:28 +02:00
datetime refactor(std): remove testing dependencies from non-test code (#5838) 2020-06-07 09:20:33 -04:00
encoding refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
examples refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
flags refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
fmt typo (#6356) 2020-06-18 06:03:38 -04:00
fs refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
hash feat(std/hash): reimplement all hashes in WASM (#6292) 2020-06-16 17:12:50 -04:00
http refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
io fix(std/io): Use Deno.test in writers_test (#6273) 2020-06-13 00:10:25 +02:00
log feat(std/log): expose logger name to LogRecord (#6316) 2020-06-18 12:50:18 +02:00
mime refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
node fix(std/node): added tests for static methods of Buffer (#6276) 2020-06-13 10:00:02 -04:00
path refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
permissions refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
signal refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
testing Update assertions names in std/testing README (#6318) 2020-06-16 17:22:54 -04:00
textproto refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
uuid refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
ws refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
README.md fix(std): fix broken style guide link (#5211) 2020-05-11 20:36:24 -04:00
version.ts v1.1.1 2020-06-19 14:48:14 -04: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.