deno/std
2020-07-07 20:43:11 +02: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 refactor: shift copyBytes and tweak deps to reduce dependencies (#6469) 2020-06-25 06:40:51 -04:00
datetime feat(std/datetime): add is leap and difference functions (#4857) 2020-06-27 13:10:45 +02:00
encoding fix(std): base64 in workers (#6681) 2020-07-07 20:43:11 +02: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 fix(std/tesing/asserts): assertEquals/NotEquals should use milliseconds in Date (#6644) 2020-07-05 22:21:03 -04:00
hash Fix scope in std/md5 (#6662) 2020-07-06 11:28:10 -04:00
http Update std/http/cookie types to not require full ServerRequest object (#6577) 2020-06-30 09:08:40 -04:00
io fix(std/io): export streams.ts & added docs (#6535) 2020-06-27 20:20:48 -04:00
log std/log - Expose Logger type and improve public interface for get & set log levels (#6617) 2020-07-05 23:57:31 -04:00
mime fix(std/mime): boundary random hex values (#6646) 2020-07-05 18:23:59 -04:00
node test(std/node): include windows in link tests (#6620) 2020-07-05 18:06:16 -04:00
path Fix definition of URL constructor (#6653) 2020-07-06 17:39:13 -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 fix(std/tesing/asserts): assertEquals/NotEquals should use milliseconds in Date (#6644) 2020-07-05 22:21:03 -04:00
textproto refactor: shift copyBytes and tweak deps to reduce dependencies (#6469) 2020-06-25 06:40:51 -04:00
uuid refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
wasi test(std/wasi): add std file read and write tests (#6671) 2020-07-07 00:49:04 -04:00
ws refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
README.md docs(std): update paragraph about the tagging process (#6519) 2020-06-28 12:25:20 -04:00
version.ts v1.1.3 2020-07-03 15:35:19 -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 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.

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.