Installing Node.js on Linux (Deepin V20+)

Node.js download page: https://nodejs.org/en/download/package-manager Method 1: Manual Installation via Archive After downloading the appropriate package from the link above, extract it to /env/nodejs (adjust the path as needed). Create symbolic links sudo ln -s /env/nodejs/node-v16.18.0-linux-x64/bin/npm /usr/local/bin/ sudo ln -s /env/nod ...

Posted on Wed, 02 Sep 2026 16:47:03 +0000 by phpnewbie8

Installing and Configuring Node Version Manager (nvm) on Windows

Downloading and Extracting nvm Begin by downloading the Node Version Manager (nvm) package from the official GitHub repository at: https://github.com/coreybutler/nvm-windows/releases After downloading the package, extract its contents to your desired location on your system. Installation Process During installation, you'll need to specify two ...

Posted on Thu, 27 Aug 2026 16:40:55 +0000 by Wolfsoap

Frontend Environment: Multi - Version Node Switching to Resolve High - Version Compatibility Issues

In frontend development, using a high - version Node.js (e.g., v16.14.0) can lead to dependency compatibility issues (e.g., node - sass@^4.7.2 is incompatible with Node v16.14.0). Upgrading node - sass to ^6.0.1 and sass - loader to ^10.2.0 resolves build - related problems. For long - term project needs, switching between multiple Node version ...

Posted on Thu, 13 Aug 2026 16:53:46 +0000 by flashman

Node.js: A Practical Guide to the JavaScript Runtime Beyond the Browser

Node.js is an open-source, cross-platform runtime that executes JavaScript outside the browser by embedding the V8 engine inside a C++ layer. It provides a complete stack—runtime, interpreter, and native bindings—so you can build network services, CLI tools, and full-stack applications using a single language. Why Use Node.js Instead of Just th ...

Posted on Sun, 02 Aug 2026 16:47:22 +0000 by killian_walsh@hotmail.com