deno/std
Bartek Iwańczuk 2cb875bcfb
refactor: rename sync io interfaces (#4945)
This commit renames sync io interfaces:
* SyncReader -> ReaderSync
* SyncWriter -> WriterSync
* SyncSeeker -> SeekerSync
2020-04-28 13:23:30 +02:00
..
archive BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
bytes create readme for std/bytes (#4876) 2020-04-24 14:24:29 -04:00
datetime BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
encoding BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
examples BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
flags BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
fmt BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
fs BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
http BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
io refactor: rename sync io interfaces (#4945) 2020-04-28 13:23:30 +02:00
log BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
mime BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
node BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
path BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
permissions Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
signal remove unnecessary delay in std/signal tests (#4703) 2020-04-10 22:03:41 -04:00
testing BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
textproto Drop headers with trailing whitespace in header name (#4642) 2020-04-06 09:58:46 -04:00
util BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
uuid feat(std/uuid): Implement uuid v5 (#4916) 2020-04-27 08:49:34 -04:00
ws feat(std/uuid): Implement uuid v5 (#4916) 2020-04-27 08:49:34 -04:00
manual.md BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
README.md docs(std): update links to documents (#4777) 2020-04-16 11:57:49 -04:00
style_guide.md BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +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/

It's strongly recommended that you link to tagged releases rather than the master branch. The project is still young and we expect disruptive renames in the future.

Documentation

Here are the dedicated documentations of 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.