You are viewing documentation generated from a user contribution or an upcoming release. The contents of this document may not have been reviewed by the Deno team. Click here to view the documentation for the latest release.
Edit
Built-In Tooling
Deno provides some built-in tooling that is useful when working with JavaScript and TypeScript:
- start new project (
deno init
) - benchmarker (
deno bench
) - bundler (
deno bundle
) - compiling executables (
deno compile
) - installer (
deno install
) - dependency inspector (
deno info
) - documentation generator (
deno doc
) - formatter (
deno fmt
) - linter (
deno lint
) - repl (
deno repl
) - task runner (
deno task
) - test runner (
deno test
) - vendoring dependencies (
deno vendor
)