So In 2018, Ryan Dahl (the creator of Node.js) issued โ10 Things I Regret About Node.jsโ in JSConf , He goes on including several regrets about design he took over Node.js in 2009. Almost half of his talk, he showed us an experimental prototype called Deno successor of Nodejs which aimed to fix previous problems.
Deno v1.0 has launched and I think that it may be on the right track to replace Node.js in the future.
Deno
Deno is a secure runtime for JavaScript and TypeScript. Imagine if you could write TypeScript without any config files, and bundle it all together into a single ES Module where both the TypeScript support and bundler are present in the core. Thatโs what it feels like when you get started with Deno.
Itโs a modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust. Whereas Node.js is written in C++ and JavaScript.
Fun fact: Deno is an anagram of Node. If you sort() node
it becomes deno
๐ฆ.
Deno ships with many features required for writing modern JavaScript & TypeScript, and WebAssembly code.
- ๐ฆ bundler
- ๐ debugger
- ๐ค test runner
- ๐งถ code formatter
- ๐ docs generator
- ๐งต WebAssembly support
Deno has some interesting features
- Secure by default.
No file, network, or environment access, unless explicitly enabled. - Single Executable.
Ships only a single executable file. - TypeScript Support Deno ships with out of the box TypeScript compiler.
- Module system
No
package.json
, nonode_modules
. Source files can be imported using a relative path, an absolute path or a fully qualified URL of a source file:import { test } from "https://unpkg.com/deno_testing@0.0.5/testing.ts" import { log } from "./util.ts"
What are the main issues with Node.js?
Any program can write to the filesystem and the network This might be a security problem, especially when intalling untrusted packages from npm. The
[crossenv](https://blog.npmjs.org/post/163723642530/crossenv-malware-on-the-npm-registry)
incident is an example. Ifcrossenv
had not had writing permissions, this would not have happened.The build system (GYP) Using GYP to build a module that links to a C library is a big pain. In order to have a sane DX youโll have to use
node-gyp
(a layer on top of GYP) and maybe other layers (like[nan](https://www.npmjs.com/package/nan)
).The module system and npm The main problem here is that the module system isnโt compatible with browsers so our code isnโt fully isomorphic. This is mainly caused by two reasons: storing dependencies in
node_modules
and having apackage.json
.
Let's get started with installing Deno
Using PowerShell (Windows):
iwr https://deno.land/x/install/install.ps1 -useb | iex
With Shell:
curl -fsSL https://deno.land/x/install/install.sh | sh
With Homebrew:
brew install deno
Now check if deno
was installed by running the deno --version
command in your terminal.
Simple http server
This example contains a simple http server (app.ts):
import { serve } from "https://deno.land/std@0.50.0/http/server.ts";
const s = serve({ port: 8000 });
console.log("http://localhost:8000/");
for await (const req of s) {
req.respond({ body: "Hello World\n" });
}
Run the code:
deno run app.ts
This results into permission error
error: Uncaught PermissionDenied: read access to "http/server.ts", run again with the --allow-read flag
โบ $deno$/dispatch_json.ts:40:11
at DenoError ($deno$/errors.ts:20:5)
...
This is because deno allows you to control the granularity of permissions. To run above application you need set some flags indicating deno that particular permission are allowed.
deno run --allow-net app.ts
> http://localhost:8000/
Now open up your browser at localhost:8000. You will be see the Hello World text. Okay this was just a basic demonstration of how you could create simple http server using deno.
See more example here
I have created User REST API in deno feel free to check it out here. Clone the Repo and play around. Contribution are always welcome๐
Conclusion
There's still a long time until Deno reaches a production-ready state, but I think itโs on the right path in order to be a better Javascript runtime than Node.js๐ฅ. Thanks for reading! ๐๐
Do check my website smithgajjar.dev and GitHub here Follow me on LinkedIn