The arrival of Deno 1.0 has been announced on the official website. Developed to iron out issues in the widely used JavaScript runtime Node.js, this JavaScript and TypeScript runtime also lets you run your code outside the browser but adds additional features such as support for TypeScript out of the box. Deno is based on the V8 JavaScript engine as well as the programming language Rust, which is known for its focus on security.
SEE ALSO: Deno 1.0 – “Deno is a web browser for command-line scripts”
Deno 1.0
The JavaScript runtime Node.js was developed by Ryan Dahl in 2009—and things have changed since then. At the time of Node’s creation, for example, JavaScript did not yet have Promise
s or async/await
, which Deno takes into account. Since Deno is designed to work not only for small but also complex use cases where type checking becomes important, it supports TypeScript without additional tooling and its standard modules are written in TypeScript as well.
Source : JAXenter