1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/std
2019-12-23 04:36:25 -05:00
..
archive feat: Add missing mod.ts files in std (#3509) 2019-12-20 15:21:30 -05:00
bytes Move everything into std subdir 2019-10-09 17:10:09 -04:00
datetime fix: std/datetime toIMF bug (#3357) 2019-11-16 08:24:07 -05:00
encoding fix(std/encoding/yaml): support document separator in parseAll (#3535) 2019-12-21 03:57:51 -05:00
examples Use top-level for-await in various places (#3217) 2019-10-28 15:58:35 -04:00
flags Update to TypeScript 3.7 (#3275) 2019-11-13 13:42:34 -05:00
fmt feat: Add missing mod.ts files in std (#3509) 2019-12-20 15:21:30 -05:00
fs fix permission errors are swallowed by fs.copy() (#3504) 2019-12-18 09:45:19 -05:00
http feat: Add missing mod.ts files in std (#3509) 2019-12-20 15:21:30 -05:00
installer fix(installer): installs to the wrong directory on Windows (#3462) 2019-12-08 14:59:27 +01:00
io feat: Add missing mod.ts files in std (#3509) 2019-12-20 15:21:30 -05:00
log Update to TypeScript 3.7 (#3275) 2019-11-13 13:42:34 -05:00
media_types std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
mime feat: Add missing mod.ts files in std (#3509) 2019-12-20 15:21:30 -05:00
multipart feat: Add missing mod.ts files in std (#3509) 2019-12-20 15:21:30 -05:00
node std/node: better error message for read perm in require() (#3502) 2019-12-15 17:23:12 +08:00
path std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
prettier feat: add ignore parser for std/prettier (#3399) 2019-11-26 08:07:39 -08:00
strings Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
testing feat: Add missing mod.ts files in std (#3509) 2019-12-20 15:21:30 -05:00
textproto Update to TypeScript 3.7 (#3275) 2019-11-13 13:42:34 -05:00
util Update to TypeScript 3.7 (#3275) 2019-11-13 13:42:34 -05:00
uuid std: remove wildcard export in uuid module (#3540) 2019-12-23 04:36:25 -05:00
ws Update to TypeScript 3.7 (#3275) 2019-11-13 13:42:34 -05:00
xeval Move everything into std subdir 2019-10-09 17:10:09 -04:00
manual.md feat: Add missing mod.ts files in std (#3509) 2019-12-20 15:21:30 -05:00
README.md Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
style_guide.md Change magic table-of-contents thing (#3197) 2019-10-24 17:58:57 -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/

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.