deno/std
Bert Belder 3e6ea62841
BREAKING: Include limited metadata in 'DirEntry' objects (#4941)
This change is to prevent needed a separate stat syscall for each file
when using readdir.

For consistency, this PR also modifies std's `WalkEntry` interface to
extend `DirEntry` with an additional `path` field.
2020-04-29 16:00:31 -04:00
..
archive BREAKING: Remove Deno.EOF, use null instead (#4953) 2020-04-28 12:40:43 -04: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 Move the docs like @param [obj.prop] to the interface. (#4974) 2020-04-28 23:26:31 +02:00
examples BREAKING: Map-like interface for Deno.env (#4942) 2020-04-29 14:48:19 -04: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: Include limited metadata in 'DirEntry' objects (#4941) 2020-04-29 16:00:31 -04:00
http BREAKING: Include limited metadata in 'DirEntry' objects (#4941) 2020-04-29 16:00:31 -04:00
io fix: Make std/io copyN write the whole read buffer (#4978) 2020-04-29 12:25:40 +02:00
log adjust docs for std/log (#4984) 2020-04-29 09:38:44 -04:00
mime BREAKING: Remove Deno.EOF, use null instead (#4953) 2020-04-28 12:40:43 -04:00
node BREAKING: Include limited metadata in 'DirEntry' objects (#4941) 2020-04-29 16:00:31 -04:00
path BREAKING: Map-like interface for Deno.env (#4942) 2020-04-29 14:48:19 -04:00
permissions Update to Prettier 2 and use ES Private Fields (#4498) 2020-03-28 13:03:49 -04:00
signal BREAKING: Use LLVM target triple for Deno.build (#4948) 2020-04-28 12:35:23 -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
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 Remove Conn.closeRead (#4970) 2020-04-28 15:17:55 -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.