From 1d8f3cc896ac417ceed4a28e4a001a758ab49185 Mon Sep 17 00:00:00 2001 From: Ry Dahl Date: Thu, 24 Oct 2019 16:14:05 -0400 Subject: Remove old website (#3194) Move manual.md and style_guide.md into //std so they can be accessed from https://deno.land/std/manual.md Code for new website is https://github.com/denoland/deno_website2 Co-authored-by: Christian Moritz --- website/index.html | 151 ----------------------------------------------------- 1 file changed, 151 deletions(-) delete mode 100644 website/index.html (limited to 'website/index.html') diff --git a/website/index.html b/website/index.html deleted file mode 100644 index 38c0092c7..000000000 --- a/website/index.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - Deno - - - - - - - - - - -
-
- -
-

Deno

- A secure runtime for JavaScript and TypeScript built with V8, Rust, and Tokio -
-
- - - - - - - - - - - - - - - - - - - - -
Linux & MacWindows
deno - - - -
- deno_install - - - - - - - - -
registry - - - -
- -

Install #

- -

Using Shell:

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

Or using PowerShell:

-
iwr https://deno.land/x/install/install.ps1 -useb | iex
-

Using Homebrew (mac):

-
brew install deno
-

Using Scoop (windows): -

scoop install deno
-

Using Cargo: -

cargo install deno_cli
-

See deno_install for more installation options.

- -

Example #

- -

Try running a simple program:

-
deno https://deno.land/welcome.ts
- -

Or a more complex one:

- -
import { serve } from "https://deno.land/std@v0.19.0/http/server.ts";
-const body = new TextEncoder().encode("Hello World\n");
-const s = serve(":8000");
-window.onload = async () => {
-  console.log("http://localhost:8000/");
-  for await (const req of s) {
-    req.respond({ body });
-  }
-};
- -

Dig in... #

- -

- Manual -

- -

API Reference

- -

- Standard Modules -

- -

Style Guide

- -

Module repository

- -

Twitter Account

- -

- Release notes -

- -

Community chat room

- -

Benchmarks

- -

- A curated list of awesome Deno things -

- - - -
- - -- cgit v1.2.3