1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/std
Casper Beyer be89bdfed7
test(std/wasi): reduce test duplication (#8053)
This fast-forwards wasi-test-suite a couple of commits removed
duplicate, or near duplicate tests with not much additional value.

Other tests have been merged to reduce the number of modules to make
tests topical to the syscall that is being tested.
2020-10-20 22:54:27 +02:00
..
_util feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
archive fix(std/tar): fix constant condition (#8010) 2020-10-19 13:33:51 +02:00
async docs: end sentences with a period in markdown (#7813) 2020-10-04 07:19:11 +11:00
bytes docs(std/bytes): add missing docs to README (#7885) 2020-10-08 15:39:02 -04:00
datetime docs(std/datetime): document toIMF, isLeap, difference, and constants (#7931) 2020-10-19 14:35:48 +02:00
encoding fix(std/encoding): base64 properly encodes mbc and handles Uint8Arrays (#7807) 2020-10-13 12:12:10 +11:00
examples feat(fmt): Sort named import and export specifiers (#7711) 2020-09-27 12:22:32 +02:00
flags docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
fmt docs: end sentences with a period in markdown (#7813) 2020-10-04 07:19:11 +11:00
fs docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
hash docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
http docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
io fix(std/io): remove trivial internal util.ts module (#8032) 2020-10-20 13:51:57 +02:00
jwt docs(std/jwt): Fix examples (#8044) 2020-10-20 13:59:10 +02:00
log docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
mime fix(std/io): remove trivial internal util.ts module (#8032) 2020-10-20 13:51:57 +02:00
node feat(std/fs/node): adding some functions (#7921) 2020-10-14 11:59:28 -04:00
path feat(std/path): Add toFileUrl() (#7971) 2020-10-19 14:36:53 +02:00
permissions Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
signal docs: end sentences with a period in markdown (#7813) 2020-10-04 07:19:11 +11:00
testing docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
textproto chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
uuid docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
wasi test(std/wasi): reduce test duplication (#8053) 2020-10-20 22:54:27 +02:00
ws docs(std): version all imports in README (#7442) 2020-10-04 14:18:36 +02:00
README.md chore(std): edit style guide link to deno manual (#6490) 2020-07-14 14:54:13 +02:00
tsconfig_test.json feat(unstable): revert "enable importsNotUsedAsValues by default #7413" (#7800) 2020-10-03 16:40:26 +02:00
version.ts v1.4.5 2020-10-08 14:20:18 +02: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 will eventually be tagged in accordance with Deno releases but as of today we do not yet consider them stable and so we version the standard modules differently from the Deno runtime to reflect this.

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

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.

Don't import any symbol with an underscore prefix: export function _baz() {}.

These elements are not considered part of the public API, thus no stability is guaranteed for them.

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.