deno/cli
Luca Casonato 8e1304ced4
perf(test): use fast ops for deno test register (#20670)
Use fast ops for test registration. This speeds up `Deno.test` and
`t.step()` significantly (2x over Deno 1.37.0).
2023-09-26 02:21:18 +00:00
..
args feat: Add "deno jupyter" subcommand (#20337) 2023-09-16 02:42:09 +02:00
bench feat: support import attributes (#20342) 2023-09-07 09:09:16 -04:00
cache feat(unstable): package manager (#20517) 2023-09-18 10:46:44 -04:00
js perf(test): use fast ops for deno test register (#20670) 2023-09-26 02:21:18 +00:00
lsp docs: fix broken deno manual link (#20667) 2023-09-25 14:09:27 +02:00
napi 1.37.0 (#20574) 2023-09-19 20:29:17 +00:00
npm fix(npm): properly handle legacy shasum of package (#20557) 2023-09-18 16:40:41 -04:00
ops perf(test): use fast ops for deno test register (#20670) 2023-09-26 02:21:18 +00:00
schemas feat(ext/kv): connect to remote database (#20178) 2023-08-22 13:56:00 +08:00
standalone fix(cli): for main-module that exists in package.json, use the version defined in package.json directly (#20328) 2023-09-18 20:02:58 +00:00
tests test: unflake serve_test/httpServerTcpCancellation (#20672) 2023-09-26 02:12:12 +00:00
tools fix(jupyter): await Jupyter.display evaluation (#20646) 2023-09-23 16:30:16 +02:00
tsc refactor: rewrite some ops to op2 macro (#20603) 2023-09-21 08:08:23 -06:00
util refactor(lsp): cleanup document preload (#20520) 2023-09-18 20:58:16 +01:00
auth_tokens.rs chore: upgrade to Rust 1.67 (#17548) 2023-01-27 10:43:16 -05:00
build.rs build: add an environment variable to skip cross build check (#20281) (#20533) 2023-09-17 16:06:51 +00:00
Cargo.toml 1.37.0 (#20574) 2023-09-19 20:29:17 +00:00
deno.ico fix(cli): add icon and metadata to deno.exe on Windows (#6693) 2020-07-15 21:54:38 +02:00
deno_std.rs 1.37.0 (#20574) 2023-09-19 20:29:17 +00:00
emit.rs refactor(lsp): move config file related code to config.rs (#19790) 2023-07-10 21:45:09 +00:00
errors.rs feat: support import attributes (#20342) 2023-09-07 09:09:16 -04:00
factory.rs fix(cli): for main-module that exists in package.json, use the version defined in package.json directly (#20328) 2023-09-18 20:02:58 +00:00
file_fetcher.rs feat: support import attributes (#20342) 2023-09-07 09:09:16 -04:00
graph_util.rs feat(unstable): package manager (#20517) 2023-09-18 10:46:44 -04:00
http_util.rs feat(unstable): add more options to Deno.createHttpClient (#17385) 2023-05-21 03:43:54 +02:00
js.rs build: allow disabling snapshots for dev (#20048) 2023-08-06 01:47:15 +02:00
main.rs feat: Add "deno jupyter" subcommand (#20337) 2023-09-16 02:42:09 +02:00
module_loader.rs feat: Add "deno jupyter" subcommand (#20337) 2023-09-16 02:42:09 +02:00
node.rs chore: rename some helpers on the Fs trait (#20097) 2023-08-08 16:28:18 -04:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
resolver.rs refactor: remove DENO_UNSTABLE_NPM_SYNC_DOWNLOAD and custom sync functionality (#20504) 2023-09-14 17:51:28 +00:00
version.rs refactor: make version and user_agent &'static str (#18400) 2023-03-23 23:27:58 +01:00
worker.rs fix(cli): for main-module that exists in package.json, use the version defined in package.json directly (#20328) 2023-09-18 20:02:58 +00:00

Deno CLI Crate

crates

This provides the actual deno executable and the user-facing APIs.

The deno crate uses the deno_core to provide the executable.