Skip to content
Branch: master
Find file History

Files

Permalink
Type Name Latest commit message Commit time
..
Failed to load latest commit information.
_util refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
archive fix(std/archive): untar (#6217) Jun 10, 2020
async improve deferred test (#5459) May 15, 2020
bytes feat(std/bytes): add hasSuffix and contains functions, update docs (#… May 20, 2020
datetime refactor(std): remove testing dependencies from non-test code (#5838) Jun 7, 2020
encoding refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
examples refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
flags refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
fmt make std deno-lint clean (#6240) Jun 12, 2020
fs refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
hash refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
http refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
io fix(std/io): Use Deno.test in writers_test (#6273) Jun 12, 2020
log refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
mime refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
node fix(std/node): added tests for static methods of Buffer (#6276) Jun 13, 2020
path refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
permissions refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
signal refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
testing Fix assertEqual so that it handles URL objects (#6278) Jun 13, 2020
textproto refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
uuid refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
ws refactor: Don't destructure the Deno namespace (#6268) Jun 12, 2020
README.md fix(std): fix broken style guide link (#5211) May 12, 2020
version.ts v1.1.0 Jun 12, 2020

README.md

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/. Not specifying a tag will link to the master branch.

It is strongly recommended that you link to tagged releases to avoid unintended updates.

Don't link to / import any module whose path:

  • Has a name or parent with an underscore prefix: _foo.ts, _util/bar.ts.
  • Is that of a test module or test data: test.ts, foo_test.ts, testdata/bar.txt.

No stability is guaranteed for these files.

Documentation

To browse documentation for 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.

You can’t perform that action at this time.