Logo

dev-resources.site

for different kinds of informations.

How Deno differs from Node.js

Published at
8/24/2023
Categories
deno
node
shorts
javascript
Author
oneminch
Categories
4 categories in total
deno
open
node
open
shorts
open
javascript
open
Author
8 person written this
oneminch
open
How Deno differs from Node.js

Deno improves upon Node.js in some significant ways.

Modules

Modules are loaded directly from URLs and cached locally.

import confetti from "https://esm.sh/[email protected]";
Enter fullscreen mode Exit fullscreen mode

This allows the decentralization of packages by removing reliance on npm and enabling developers to self-host their packages.

Consequently, this removes the need for package.json and node_modules, and allows programs to run in the browser since there is no reliance on build tools like Webpack.

Security

Because code is executed in a sandbox, the Deno runtime has no access to the file system and the network. Flags like --allow-write and --allow-net can be used to explicitly enable access.

Other Features

In addition to the above features, Deno supports TypeScript out of the box and has a built-in formatter for code similar to ESLint for Node.js.

Featured ones: