-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing some broken links, renaming some files, adding a cli TOC (#862)
- Loading branch information
1 parent
3619e8b
commit d93f503
Showing
5 changed files
with
61 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"/runtime/manual/examples/read_write_files/": "/examples/", | ||
"/runtime/tutorials/read_write_files/": "/examples/", | ||
"/runtime/tutorials/unix_cat/": "/examples/unix-cat/", | ||
"/examples/dependency-management/": "/runtime/fundamentals/configuration/#dependencies" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: "Deno CLI Subcommands" | ||
--- | ||
|
||
The Deno CLI (Command Line Interface) allows you to interact with the Deno | ||
runtime environment from your terminal or command prompt. The CLI has a number | ||
of subcommands that can be used to perform different tasks, check the links | ||
below for more information on each subcommand. | ||
|
||
- [deno bench](/runtime/reference/cli/benchmarker/) - benchmarking tool | ||
- [deno cache](/runtime/reference/cli/cache/) - cache and compile dependencies | ||
- [deno check](/runtime/reference/cli/check/) - type check your program without | ||
running it | ||
- [deno compile](/runtime/reference/cli/compiler/) - compile a program into a | ||
standalone executable | ||
- [deno completions](/runtime/reference/cli/completions/) - generate shell | ||
completions | ||
- [deno coverage](/runtime/reference/cli/coverage/) - generate test coverage | ||
reports | ||
- [deno doc](/runtime/reference/cli/documentation_generator/) - generate | ||
documentation for a module | ||
- [deno eval](/runtime/reference/cli/eval/) - evaluate provided script | ||
- [deno fmt](/runtime/reference/cli/formatter/) - format your code | ||
- [deno info](/runtime/reference/cli/dependency_inspector/) - inspect an ES | ||
module and all of its dependencies | ||
- [deno init](/runtime/reference/cli/init/) - create a new project | ||
- [deno install](/runtime/reference/cli/script_installer/) | ||
- [deno jupyter](/runtime/reference/cli/jupyter/) - run a Jupyter notebook | ||
- [deno lint](/runtime/reference/cli/linter/) - lint your code | ||
- [deno lsp](/runtime/reference/cli/lsp/) - language server protocol integration | ||
- [deno publish](/runtime/reference/cli/publish/) - publish a module | ||
- [deno repl](/runtime/reference/cli/repl/) - starts a read-eval-print-loop | ||
- [deno run](/runtime/reference/cli/run/) - run a script | ||
- [deno serve](/runtime/reference/cli/serve/) - run a web server | ||
- [deno task](/runtime/reference/cli/task_runner/) - run a task | ||
- [deno test](/runtime/reference/cli/test/) - run your tests | ||
- [deno types](/runtime/reference/cli/types/) - print runtime types | ||
- [deno uninstall](/runtime/reference/cli/uninstall/) - uninstall a script | ||
- [deno upgrade](/runtime/reference/cli/upgrade/) - upgrade Deno to the latest | ||
version | ||
- [environment variables](/runtime/reference/cli/env_variables/) | ||
- [unstable feature flags](/runtime/reference/cli/unstable_flags/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters