deno/cli
Timothy J. Aveni 9f363c0b96
docs: remove quotes around undefined in Deno.env.get example (#29159)
`Deno.env.get` returns undefined when the environment variable is not
present. I initially interpreted this doc string to indicate that it
would return the string literal `"undefined"`, which isn't right.

Could use backticks here as above, but a little confusing in a JS
context where this also indicates a (template) string literal.
2025-05-04 21:20:41 +02:00
..
args fix(vendor): strip jsr version meta module graph data (#29120) 2025-05-01 15:05:23 +00:00
bench refactor(lsp): separate document and module storage (#28469) 2025-03-31 22:25:27 +01:00
cache feat(cache): add DENO_EMIT_CACHE_MODE (#29025) 2025-04-25 16:01:10 +00:00
js fix(unstable): lint .parent property not traversing over groups (#28803) 2025-04-10 09:17:42 +02:00
lib build: Use separate version.txt file to define crate version (#29136) 2025-05-02 10:30:03 -04:00
lsp refactor(deno_resolver): extract out CLI's deno_graph::source::Resolver (#29143) 2025-05-03 15:44:08 -04:00
npm refactor: ability for deno_npm_cache to compile to Wasm (#29138) 2025-05-02 16:52:40 -04:00
ops feat(jupyter): make GPUTexture and GPUBuffer displayable (#28117) 2025-02-18 00:29:45 -08:00
rt refactor: allow lazy main module (#28929) 2025-04-30 19:59:20 +00:00
schemas feat(check): support erasableSyntaxOnly for type checking (#29097) 2025-04-30 02:38:07 +00:00
snapshot 2.3.0 (#29102) 2025-04-30 09:49:31 +02:00
standalone fix(npm): respect etag for npm packument caching (#29130) 2025-05-02 09:49:05 -04:00
tools fix(npm): respect etag for npm packument caching (#29130) 2025-05-02 09:49:05 -04:00
tsc docs: remove quotes around undefined in Deno.env.get example (#29159) 2025-05-04 21:20:41 +02:00
util feat(lsp): jupyter cell continuity using classic scripts (#28769) 2025-04-17 19:39:32 +01:00
build.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
Cargo.toml refactor(deno_resolver): extract out CLI's deno_graph::source::Resolver (#29143) 2025-05-03 15:44:08 -04:00
cdp.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
clippy.toml refactor: do not use deno_fs::FileSystem everywhere (#27508) 2024-12-31 11:29:07 -05:00
deno.ico
emit.rs refactor: handle deno_media_type having Html and Sql variants (#28495) 2025-03-15 00:19:08 +09:00
entitlements.plist
factory.rs refactor(deno_resolver): extract out CLI's deno_graph::source::Resolver (#29143) 2025-05-03 15:44:08 -04:00
file_fetcher.rs feat(clean): deno clean --except <paths>, remove all cache data except what's needed to run paths (#28424) 2025-04-29 22:42:17 +00:00
graph_container.rs chore: update to rust 1.85 (#28236) 2025-02-25 08:50:01 -08:00
graph_util.rs refactor(deno_resolver): extract out CLI's deno_graph::source::Resolver (#29143) 2025-05-03 15:44:08 -04:00
http_util.rs fix(npm): respect etag for npm packument caching (#29130) 2025-05-02 09:49:05 -04:00
integration_tests_runner.rs refactor: move denort to separate crate (#27688) 2025-01-17 20:39:29 +00:00
jsr.rs refactor(lsp): remove Send + Sync requirement (#28035) 2025-02-12 13:37:47 +00:00
main.rs refactor: allow lazy main module (#28929) 2025-04-30 19:59:20 +00:00
module_loader.rs refactor: reduce dependency on futures crate (#28515) 2025-03-17 14:14:19 +00:00
node.rs feat(compile): support for ffi and node native addons (#28934) 2025-04-17 16:01:12 -04:00
README.md
registry.rs refactor: separate publish from pm subcommands (#28237) 2025-02-21 17:02:33 -05:00
resolver.rs refactor(deno_resolver): extract out CLI's deno_graph::source::Resolver (#29143) 2025-05-03 15:44:08 -04:00
task_runner.rs fix(install): regression where Deno not used when postinstall script ran script without file extension (#28786) 2025-04-08 00:59:48 +00:00
type_checker.rs refactor: handle deno_media_type having Html and Sql variants (#28495) 2025-03-15 00:19:08 +09:00
worker.rs refactor: allow lazy main module (#28929) 2025-04-30 19:59:20 +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.