A modern runtime for JavaScript and TypeScript.
Go to file
Jérôme Benoit 65a4b44b75
docs: add missing cmake build dependency installation (#20788)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
2023-11-06 13:31:26 +01:00
.cargo chore: Add a local-build.toml to make downstream packaging from sourc… (#20236) 2023-08-24 08:46:57 -06:00
.devcontainer fix(devcontainer): Add build deps and update extension in devcontainer (#20467) 2023-09-12 15:33:07 +00:00
.github 1.38.0 (#21051) 2023-11-02 01:01:47 +00:00
bench_util 1.38.0 (#21051) 2023-11-02 01:01:47 +00:00
cli refactor: unify CDP types in a single module (#21094) 2023-11-05 22:58:59 +00:00
ext fix 2023-11-05 06:40:35 -08:00
runtime chore: migrate to new deno_core and metrics (#21057) 2023-11-05 14:27:36 -07:00
test_ffi feat: granular --unstable-* flags (#20968) 2023-11-01 23:15:08 +01:00
test_napi Revert "chore: update deno_std submodule (#20994)" (#21001) 2023-10-28 01:24:37 +00:00
test_util feat(ext/websocket): websockets over http2 (#21040) 2023-11-01 21:11:01 +00:00
tools chore: fix dlint version and sanity check version after download (#21058) 2023-11-02 15:37:10 -06:00
.dlint.json
.dprint.json refactor: upgrade to deno_ast 0.31 and deno_graph 0.59 (#20965) 2023-10-24 21:43:19 +00:00
.editorconfig
.gitattributes
.gitignore feat: Add "deno jupyter" subcommand (#20337) 2023-09-16 02:42:09 +02:00
.gitmodules
.rustfmt.toml
Cargo.lock chore: migrate to new deno_core and metrics (#21057) 2023-11-05 14:27:36 -07:00
Cargo.toml chore: migrate to new deno_core and metrics (#21057) 2023-11-05 14:27:36 -07:00
LICENSE.md
README.md docs: add missing cmake build dependency installation (#20788) 2023-11-06 13:31:26 +01:00
Releases.md 1.38.0 (#21051) 2023-11-02 01:01:47 +00:00
rust-toolchain.toml chore: update to Rust 1.73 (#20781) 2023-10-05 14:49:09 -04:00

Deno

Twitter badge Discord badge YouTube badge

the deno mascot dinosaur standing in the rain

Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.

Features

Install

Shell (Mac, Linux):

curl -fsSL https://deno.land/install.sh | sh

PowerShell (Windows):

irm https://deno.land/install.ps1 | iex

Homebrew (Mac):

brew install deno

Chocolatey (Windows):

choco install deno

Scoop (Windows):

scoop install deno

Build and install from source using Cargo:

# Install build dependencies
apt install -y cmake protobuf-compiler # Linux
brew install cmake protobuf # macOS

# Build and install Deno
cargo install deno --locked

See deno_install and releases for other options.

Getting Started

Try running a simple program:

deno run https://examples.deno.land/hello-world.ts

Or setup a simple HTTP server:

Deno.serve((_req) => new Response("Hello, World!"));

More Examples

Additional Resources

Contributing

We appreciate your help!

To contribute, please read our contributing instructions.