Skip to content
/ deno Public
forked from denoland/deno

A modern runtime for JavaScript and TypeScript.

License

Notifications You must be signed in to change notification settings

x-projs/deno

This branch is 4016 commits behind denoland/deno:main.

Folders and files

NameName
Last commit message
Last commit date
Jun 9, 2023
Sep 3, 2022
Jun 9, 2023
Jun 9, 2023
Jun 10, 2023
Jun 9, 2023
Jun 10, 2023
Jun 9, 2023
Jun 9, 2023
Jun 9, 2023
Apr 3, 2023
May 26, 2023
Jun 10, 2023
Jun 5, 2023
Jun 9, 2023
Jan 16, 2023
Jun 5, 2023
Feb 7, 2019
Nov 15, 2021
May 1, 2023
May 15, 2023
Jan 2, 2023
Jun 9, 2023
Jun 9, 2023
Jan 2, 2023
Apr 16, 2023
Jun 9, 2023
Jun 8, 2023

Repository files navigation

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:

cargo install deno --locked

See deno_install and releases for other options.

Getting Started

Try running a simple program:

deno run https://deno.land/std/examples/welcome.ts

Or setup a simple HTTP server:

import { serve } from "https://deno.land/std@0.182.0/http/server.ts";

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

More examples.

Additional Resources

Contributing

We appreciate your help!

To contribute, please read our contributing instructions.

About

A modern runtime for JavaScript and TypeScript.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 46.1%
  • JavaScript 33.7%
  • TypeScript 20.2%