1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/std
Bartek Iwańczuk 8e914be742
build: migrate to dlint (#8176)
This commit migrates repository from using "eslint" 
to "dlint" for linting JavaScript code.
2020-11-03 16:19:29 +01:00
..
_util build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
archive build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
async build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
bytes docs(std/bytes): add missing docs to README (#7885) 2020-10-08 15:39:02 -04:00
datetime build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
encoding build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
examples build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
flags build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
fmt build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
fs docs: fix typo in std/fs README.md (#8104) 2020-11-02 18:33:13 +01:00
hash build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
http fix: path traversal in std/http/file_server.ts (#8134) 2020-10-27 11:48:45 +01:00
io fix(std/io): remove trivial internal util.ts module (#8032) 2020-10-20 13:51:57 +02:00
log build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
mime build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
node build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
path build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
permissions Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
signal build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
testing build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
textproto chore: add copyright (#7593) 2020-09-21 08:26:41 -04:00
uuid build: migrate to dlint (#8176) 2020-11-03 16:19:29 +01:00
wasi feat(std/wasi): add start method to Context (#8141) 2020-11-02 18:50:45 +01: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.5.1 2020-10-31 15:32:43 +01: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.