1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/std
2020-05-10 17:17:54 -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 BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
bytes BREAKING: reorder std/io/utils copyBytes arguments (#5022) 2020-04-30 16:39:25 -04:00
datetime BREAKING: remove overload of Deno.test() (#4951) 2020-04-28 12:33:09 +02:00
encoding fix(std/encoding/yaml): Correct exports (#5191) 2020-05-10 17:17:54 -04:00
examples BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
flags BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
fmt feat(std/fmt): 8bit and 24bit ANSI colors (#5168) 2020-05-09 06:29:44 -04:00
fs BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
hash BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
http BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
io BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
log adjust docs for std/log (#4984) 2020-04-29 09:38:44 -04:00
mime BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
node BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
path BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
permissions Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
signal BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
testing BREAKING: Remove Deno.EOF, use null instead (#4953) 2020-04-28 12:40:43 -04:00
textproto BREAKING: Remove Deno.EOF, use null instead (#4953) 2020-04-28 12:40:43 -04:00
uuid BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
ws BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
manual.md Multi page manual (#5110) 2020-05-06 18:21:13 -04:00
README.md BREAKING(std): reorganization (#5087) 2020-05-09 08:34:47 -04:00
version.ts std/0.50.0 2020-05-09 09:15:26 -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.