Deno vs Node | Is Node.js Dead?
Deno is developed to overcome the Node.js Design Issues and provides a new modern development environment using ES6 etc.

Deno vs Node is a very hot topic for the discussion in developer and programmers community since Deno version 1.0 got released.
Node.js and Deno both is very similar. But the question is if we already have Node.js then what is the need for Deno. So Answers of this question is Since JavaScript has changed a lot since 2009 (when node.js was created). Now we have support for Promises, Async/Await, ES modules, Typed Arrays, and TypeScript, etc. Deno has built-in support of these new JavaScript features.
You may also like Node.js Interview Questions
We will discuss the key differences and similarities between Deno and Node.js
Deno uses ES Modules as the default module system, whereas Node.js uses CommonJS.
Deno supports TypeScript out of the box, which means that we don’t need to manually install and configure tools to write TypeScript code.
In Deno, External dependencies are loaded using URLs, similar to browsers. There is also no package manager and centralized registry like NPM - node_modules.
In short - Deno doesn't use NPM like Node.js. Deno uses modules referenced as URLs.
Deno does not use package.json.
In Node.js application by default has permission to system calls, environment variables, accessing files, sockets, network etc.
In Deno application you have to provide permissions to the code for system calls, environment variables, accessing files, sockets, network etc.
Deno also provides a set of built-in tools, like a test runner, code formatter and bundler, etc.
Ans:- No
As Ryan Dahl said, Deno is not going to replace Node.js, Deno is an alternative of Node.js.