1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
A modern runtime for JavaScript and TypeScript. https://deno.com/
Find a file
2019-05-24 14:44:13 +03:00
archive feat: add Tar and Untar classes (denoland/deno_std#388) 2019-05-14 17:59:42 -04:00
bytes Enable bytes tests and add bytesRepeat (denoland/deno_std#446) 2019-05-24 14:44:13 +03: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
encoding TOML: Move to encoding dir (denoland/deno_std#435) 2019-05-23 21:48:54 +03: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 Added isGlob function (denoland/deno_std#433) 2019-05-23 10:23:31 +03:00
http Fix http README examples (denoland/deno_std#440) 2019-05-23 19:05:00 +03: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
mime Rename //multipart/multipart.ts to //mime/multipart.ts (denoland/deno_std#420) 2019-05-21 09:36:12 -04:00
multipart Rename //multipart/multipart.ts to //mime/multipart.ts (denoland/deno_std#420) 2019-05-21 09:36:12 -04:00
prettier feat(prettier): output to stdout instead of write file by default unless specified --write flag (denoland/deno_std#332) 2019-05-21 08:23:23 -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 Fix denoland/deno_std#409 handle multipart header in mime reader (denoland/deno_std#415) 2019-05-18 14:05:27 -04:00
util Move collectUint8Arrays() to util/async.ts, clean up, fix bugs, add tests 2019-05-20 17:53:01 -07:00
ws chore(readme): add README.md for ws (denoland/deno_std#417) 2019-05-20 09:22:15 -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 Bump v0.6.0 (denoland/deno_std#423) 2019-05-21 02:44:36 -04:00
format.ts feat(prettier): output to stdout instead of write file by default unless specified --write flag (denoland/deno_std#332) 2019-05-21 08:23:23 -04:00
LICENSE Happy New Year (denoland/deno_std#58) 2019-01-02 09:56:17 -05:00
README.md TOML: Move to encoding dir (denoland/deno_std#435) 2019-05-23 21:48:54 +03:00
test.ts Enable bytes tests and add bytesRepeat (denoland/deno_std#446) 2019-05-24 14:44:13 +03:00
tsconfig.json fix: add exnext lib to tsconfig.json (denoland/deno_std#416) 2019-05-18 14:46:12 -04: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.