Skip to content
#

Deno

deno logo

Deno is a JavaScript/TypeScript runtime with secure defaults and a great developer experience. It's built on V8, Rust, and Tokio.

  • Secure by default. No file, network, or environment access (unless explicitly enabled).
  • Supports TypeScript out of the box.
  • Ships a single executable (deno).
  • Has built in utilities like a dependency inspector (deno info) and a code formatter (deno fmt).
  • Has a set of reviewed (audited) standard modules that are guaranteed to work with Deno.
  • Scripts can be bundled into a single javascript file.

Here are 976 public repositories matching this topic...

bartlomieju
bartlomieju commented Mar 12, 2020

Deno strives to be browser compatible where possible; that means we use quite a few Web APIs.

There is not much docs for supported Web APIs at the moment and before 1.0 is released that situation must change. Some of APIs and not fully aligned to spec, while others are not fully implemented (#3557). All that knowledge should be written down and presented to end users to avoid multiple question

ZPiDER666
ZPiDER666 commented Apr 17, 2020

The examples contained with pogo are very basic.

  • working with request objects should be demonstrated
  • working with path parameters should be demonstrated
import pogo from 'https://deno.land/x/pogo/main.js';
server.router.put('/path/{id}', async (request:pogo.Request) => {
    var id:String = request.route.params.id;	
});
  • working with request body should be demonstrated

Created by Ryan Dahl

Organization
denoland
Website
deno.land
Wikipedia
Wikipedia

Related Topics

rust typescript
You can’t perform that action at this time.