deno/std
Rafael Vargas 55063dd8e8
fix: Deno.remove() to properly remove dangling symlinks (#3860)
For some reason, the unit tests for Deno.remove() were not being imported to 
unit_tests.ts and, consequently, not being executed. Thus, I imported them, 
refactored some existent ones and wrote new ones for the symlink removal case.

Since the creation of a symlink is not implemented for Windows yet, assertions
that consider this state were added when the tests are executed in this OS.
2020-02-03 08:20:15 -05:00
..
archive Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
bytes Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
datetime Fixed month reference in documented output of parseDate and parseDateTime function calls (#3859) 2020-02-02 16:46:05 -05:00
encoding fix: Deno.remove() to properly remove dangling symlinks (#3860) 2020-02-03 08:20:15 -05:00
examples bring back std/examples/xeval.ts (#3822) 2020-01-30 21:02:14 -05:00
flags Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
fmt Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
fs dx: descriptive permission errors (#3808) 2020-01-27 21:13:17 -05:00
http chore: remove std/installer, port installer tests to Rust (#3843) 2020-01-31 17:34:50 +01:00
io fix: Deno.mkdir should conform to style guide (#3617) 2020-01-07 14:14:33 -05:00
log Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
media_types Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
mime Remove std/multipart (#3647) 2020-01-10 12:29:09 -07:00
node feat(std/node) Endianness (#3833) 2020-01-30 18:57:29 -05:00
path std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
strings fix typo 2020-01-23 10:40:26 -05:00
testing feat: Deno.args now does not include script (#3628) 2020-01-09 11:37:01 -07:00
textproto Update to TypeScript 3.7 (#3275) 2019-11-13 13:42:34 -05:00
util Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
uuid change copyrights from 2019 to 2020 (#3733) 2020-01-21 10:01:55 -05:00
ws rename dial to connect and dialTLS to connectTLS (#3710) 2020-01-18 18:35:12 +01:00
manual.md feat: deno install in Rust (#3806) 2020-01-30 18:42:39 -05:00
README.md feat: dprint formatter (#3820) 2020-01-29 21:16:48 -05:00
style_guide.md Happy new year! (#3578) 2020-01-02 15:13:47 -05: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.