deno/cli
Nathan Whitaker 44d489c811
Some checks are pending
ci / build libs (push) Blocked by required conditions
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
feat(process): add detached option to Deno.Command (#29933)
Closes #5501.

Now that we support detached processes on all platforms, we can support
this!

TODO: add a test
2025-07-01 09:20:28 -07:00
..
args feat: add support for --preload/--import flag (#29626) 2025-07-01 16:21:00 +05:30
bench refactor(lsp): separate document and module storage (#28469) 2025-03-31 22:25:27 +01:00
cache feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
js feat(unstable): support comments in lint plugin (#29189) 2025-05-08 21:59:36 +02:00
lib feat: add support for --preload/--import flag (#29626) 2025-07-01 16:21:00 +05:30
lsp feat: add support for --preload/--import flag (#29626) 2025-07-01 16:21:00 +05:30
ops chore: Rust 1.86.0 (#29435) 2025-05-25 23:40:48 +02:00
rt feat: add support for --preload/--import flag (#29626) 2025-07-01 16:21:00 +05:30
schemas chore: add back node-globals to json schema (#29899) 2025-06-26 17:11:18 +00:00
snapshot 2.3.7 (#29853) 2025-06-23 23:51:36 +02:00
standalone feat(unstable): support bytes and text imports in deno compile (#29924) 2025-06-28 12:24:07 -04:00
tools fix(publish): disallow publishing with bytes or text imports (#29954) 2025-07-01 15:47:54 +00:00
tsc feat(process): add detached option to Deno.Command (#29933) 2025-07-01 09:20:28 -07:00
util feat(bundle): add watch mode to bundle (#29795) 2025-06-18 08:35:12 -07:00
build.rs fix(dts): add Atomics.pause, Promise.try and RegExp.escape (#29186) 2025-05-08 23:16:35 +02:00
Cargo.toml 2.3.7 (#29853) 2025-06-23 23:51:36 +02:00
cdp.rs fix(cli/hmr): print compile error with exception details (#27597) 2025-05-08 23:39:31 +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 feat(check): tsconfig "references", "extends", "files", "include" and "exclude" (#29843) 2025-06-26 21:17:07 +00:00
entitlements.plist chore: start codesigning mac release builds (#21303) 2023-11-23 15:30:26 -07:00
factory.rs feat(unstable): support bytes and text imports in deno compile (#29924) 2025-06-28 12:24:07 -04:00
file_fetcher.rs chore: use aws_lc_rs (#28244) 2025-06-19 01:07:00 -07:00
graph_container.rs fix: load changed non-remote dynamic imports at runtime (#29413) 2025-05-26 21:38:51 +00:00
graph_util.rs feat(check): tsconfig "references", "extends", "files", "include" and "exclude" (#29843) 2025-06-26 21:17:07 +00: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 fix(vendor): store remote version metadata checksum in vendor folder to ensure lockfile uses that (#29433) 2025-05-29 23:46:15 -04:00
main.rs feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
module_loader.rs feat(unstable): bytes and text imports (#29855) 2025-06-26 11:21:16 -04:00
node.rs refactor: upgrade to deno_graph 0.95 (#29575) 2025-06-03 17:52:23 +00:00
npm.rs fix(install/global): resolve bin name from npm packument (#29884) 2025-06-25 15:10:26 -04:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
registry.rs feat(unstable): deploy subcommand (#29407) 2025-05-30 16:28:49 +00:00
resolver.rs refactor: add NpmInstallerFactory and push more functionality down into deno_npm_installer (#29342) 2025-05-17 15:10:06 -04:00
task_runner.rs feat: deprecate --unstable-node-globals flag (#29887) 2025-06-26 12:49:24 +02:00
type_checker.rs feat(check): tsconfig "references", "extends", "files", "include" and "exclude" (#29843) 2025-06-26 21:17:07 +00:00
worker.rs feat: add support for --preload/--import flag (#29626) 2025-07-01 16:21:00 +05:30

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.