Find a file
2019-05-16 16:23:25 -04:00
archive feat: add Tar and Untar classes (denoland/deno_std#388) 2019-05-14 17:59:42 -04:00
bytes [bytes] fix bytesFindIndex and bytesFindLastIndex (denoland/deno_std#381) 2019-05-07 12:02:31 -04:00
colors Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
datetime datetime: timezone fix in toIMF (denoland/deno_std#400) 2019-05-13 14:03:24 -04:00
examples feat: ws client (denoland/deno_std#394) 2019-05-14 15:19:11 -04:00
flags Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
fs feat(fs): add copy/copySync (denoland/deno_std#278) 2019-05-16 12:19:17 -04:00
http http_bench: print address (denoland/deno_std#374) 2019-05-14 17:49:53 -04:00
io feat: ws client (denoland/deno_std#394) 2019-05-14 15:19:11 -04:00
log docs(log): fix docs mistake (denoland/deno_std#372) 2019-04-30 08:19:55 -07:00
media_types Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
multipart Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
prettier walk() should not use deprecated FileInfo.path (denoland/deno_std#398) 2019-05-14 17:14:08 -04:00
strings Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
testing benching: use performance.now (denoland/deno_std#385) 2019-05-10 10:48:06 -04:00
textproto textproto: fix invalid header error and move tests (denoland/deno_std#369) 2019-05-01 12:13:23 -04:00
toml toml: remove parseFile (denoland/deno_std#361) 2019-04-25 16:47:18 -06:00
util Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
ws ws: make acceptable() more robust (denoland/deno_std#404) 2019-05-14 17:45:52 -04:00
.editorconfig add charset & trim_trailing_whitespace (denoland/deno_std#158) 2019-01-26 14:09:53 -05:00
.eslintrc.json fix: eslint errors (denoland/deno_std#265) 2019-03-12 01:51:51 -04:00
.gitignore Eslint fixes (denoland/deno_std#356) 2019-04-24 07:41:22 -04:00
azure-pipelines.yml ci: bump to v0.5.0 2019-05-14 17:28:15 -04:00
format.ts Add run to shebangs (denoland/deno_std#380) 2019-05-06 17:07:43 -04:00
LICENSE Happy New Year (denoland/deno_std#58) 2019-01-02 09:56:17 -05:00
README.md readme: loose port of go's std lib (denoland/deno_std#413) 2019-05-16 16:23:25 -04:00
test.ts feat: add Tar and Untar classes (denoland/deno_std#388) 2019-05-14 17:59:42 -04:00
tsconfig.json Add eslint for linting (denoland/deno_std#235) 2019-03-04 19:53:35 -05:00

Deno Standard Modules

Build Status

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.