deno/std
Kitson Kelly 8d03397293 Make bundles fully standalone (#3325)
- Bundles are fully standalone. They now include the shared loader with
  `deno_typescript`.
- Refactor of the loader in `deno_typescript` to perform module
  instantiation in a more
- Change of behaviour when an output file is not specified on the CLI.
  Previously a default name was determined and the bundle written to that
  file, now the bundle will be sent to `stdout`.
- Refactors in the TypeScript compiler to be able to support the concept
  of a request type.  This provides a cleaner abstraction and makes it
  easier to support things like single module transpiles to the userland.
- Remove a "dangerous" circular dependency between `os.ts` and `deno.ts`,
  and define `pid` and `noColor` in a better way.
- Don't bind early to `console` in `repl.ts`.
- Add an integration test for generating a bundle.
2019-11-13 10:35:56 -05:00
..
archive std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
bytes Move everything into std subdir 2019-10-09 17:10:09 -04:00
datetime Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
encoding std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
examples Use top-level for-await in various places (#3217) 2019-10-28 15:58:35 -04:00
flags std/flags: Add test for multiple boolean flags (#3103) 2019-10-16 11:34:36 -04:00
fmt Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
fs std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
http net: Check for closing status when iterating Listener (#3309) 2019-11-09 14:40:22 -05:00
installer Reenable std tests that were disabled during merge (#3159) 2019-10-21 11:58:45 -04:00
io std: fix BufReader.readString to actually return Deno.EOF at end (#3191) 2019-10-28 10:28:29 -07:00
log Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
media_types std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
mime std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
multipart Move everything into std subdir 2019-10-09 17:10:09 -04:00
node feat: std/node (#3319) 2019-11-12 15:51:14 -05:00
path std: Move fs/path to the top-level (#3100) 2019-10-16 14:39:33 -04:00
prettier upgrade: Prettier 1.19.1 (#3305) 2019-11-09 08:24:43 -05:00
strings Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
testing Consolidates asserts#equal branches for keyed collections (Map/Set) and supports deep equality of Map keys (#3258) 2019-11-04 10:21:42 -05:00
textproto Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
util Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
uuid Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
ws feat: top-level-for-await (#3212) 2019-10-27 09:04:42 -04:00
xeval Move everything into std subdir 2019-10-09 17:10:09 -04:00
manual.md Make bundles fully standalone (#3325) 2019-11-13 10:35:56 -05:00
README.md Run deno_std tests in github actions 2019-10-09 17:22:22 -04:00
style_guide.md Change magic table-of-contents thing (#3197) 2019-10-24 17:58:57 -04: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 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.