How to downgrade node js version
How to downgrade node js version
Easily upgrade or downgrade your Node.js version
Sometimes, when you are working on a project which uses a different version of Node.js than what’s installed on your dev machine, you may want to change to the Node.js version required by the project.
All you have to do is install a package called n, which caches node versions on your dev machine.
Install n using npm
Exit fullscreen mode
After executing the above command, you may receive a series of npm warnings followed by npm ERR! You can execute these three commands which are also mentioned here.
Exit fullscreen mode
Now, you can install any version of Node.js you want.
Executing as n you can download and install a version of Node.js. If the has already been downloaded, n will install from its cache.
To change to the latest version of node
You can also check the versions of node your n package has, by simply executing the following command n
Executing the above command provides the versions cached.
How to downgrade Node version
But nothing worked so far. Tried NVM and it gives an error as well by saying make command is not found. How can I downgrade Node?
18 Answers 18
Trending sort
Trending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers.
It falls back to sorting by highest score if no posts are trending.
Switch to Trending sort
Warning: This answer does not support Windows OS
this is very easy to use.
then you can show your node version:
For windows nvm is a well-received tool.
Go to Control panel> program and features>Node.js then uninstall
Go to website: https://nodejs.org/en/ and download the version and install.
Determining your Node version
Ensure that you have n installed
Upgrading to the latest stable version
Changing to a specific version
Answer inspired by this article.
This may be due to version incompatibility between your code and the version you have installed.
In my case I was using v8.12.0 for development (locally) and installed latest version v13.7.0 on the server.
So using nvm I switched the node version to v8.12.0 with the below command:
NOTE: You need to install nvm on your system to use nvm.
You should try this solution before trying solutions like installing build-essentials or uninstalling the current node version because you could switch between versions easily than reverting all the installations/uninstallations that you’ve done.
How to downgrade node version?
I want to downgrade my version using npm. The current version is 16.13.1. I want to downgrade this to 12.0.1. Can anyone tell me how to do it?
7 Answers 7
Trending sort
Trending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers.
It falls back to sorting by highest score if no posts are trending.
Switch to Trending sort
You can accomplish that with Node Version Manager. Install nvm first, and in a terminal:
You could also install the node npm module to change (upgrade or downgrade) the NodeJS version for the specific project.
Try the n package from npm. Find it here.
Simply execute n to download and install a version of Node.js. If has already been downloaded, n will install from its cache.
first check your node version
now you can check the node and npm version by
I finally found a simple solution.
It works fine for me.
Not the answer you’re looking for? Browse other questions tagged node.js angular npm or ask your own question.
Linked
Related
Hot Network Questions
Subscribe to RSS
To subscribe to this RSS feed, copy and paste this URL into your RSS reader.
By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.
How to change to an older version of Node.js
I am running Node.js version v0.5.9-pre on Ubuntu 10.10.
How do I roll back to the older version of node?
19 Answers 19
Trending sort
Trending sort is based off of the default sorting method — by highest score — but it boosts votes that have happened recently, helping to surface more up-to-date answers.
It falls back to sorting by highest score if no posts are trending.
Switch to Trending sort
Use n, an extremely simple Node version manager that can be installed via npm.
Say you want Node.js v0.10.x to build Atom.
Windows
Use nvm-windows, it’s like nvm but for Windows. Download and run the installer, then:
One way is to use NVM, the Node Version Manager.
Use following command to get nvm
It allows you to easily install and manage multiple versions of node. Here’s a snippet from the help:
/.nvm/nvm.sh I always add this line to my
/.profile file to have it automatically sources upon login. Often I also put in a line to use a specific version of node.»
Update: Updated the answer because previous one was not relevant.
Follow below steps to update your node version.
1. Install nvm For this run below command in your terminal
Note: If above command did not work for you can choose another option to install it. I have added an answer for this here
2. Install specific node version using nvm
Replace 12.14.1 with your node version
Note: If you are getting error of NVM not recognised then run below command and then run above again
3. Make the installed version default
Note: Replace 12.14.1 with your installed version.
4. Check node version
And that’s it. Cheers!
Extra
Why use any extension when you can do this without extension 🙂
Install specific version of node
Specific version : sudo n 4.4.4 instead of sudo n stable
Lets each project specify its own version
You can add node as a dependency in package.json and control which version is used for a particular project. Upon executing a package.json «script», npm (and yarn ) will use that version to run the script instead of the globally installed Node.js.
The node package accomplishes this by downloading a node binary for your local system and puts it into the node_modules/.bin directory.
You can also do this with the npm (or yarn ) packages but you’ll need to set your PATH up specifically or use something like npx that handles it for you.
If you’re on node 12 and want to downgrade to node 10, just remove node and follow the instructions for the desired version:
Chocolatey is good for keeping installations up to date easily and it is a common way to install Node.js on Windows. I had to remove the bleeding edge version before installing the LTS version:
Node.js: It is a JavaScript runtime(server-side) built on V8 JavaScript engine of Google Chrome. It was developed in 2009 by Ryan Dhal. Node.js uses an event-driven, non-blocking input/output model that makes it lightweight and efficient. It is perfect for data-intensive real-time applications. Node is like a wrapper around the V8 with built-in modules providing many features that are easy to use in asynchronous APIs.
NPM: NPM(Node Package Manager) installs and manages version and dependency of packages for Node.js. NPM is installed with Node. The aim of NPM is automated dependency and package management, anytime or anyone needs to get started with the project they can simply rum NPM install and all the dependencies they will have immediately. It is possible to specify which version your project depends upon to save your project from breaking due to updates.
Installing the previous version of Node.js and NPM: To install the previous versions from the latest version, the latest version of Node.js should be installed on your computer or you can install it from the official site of Node.js.
Step 1: Check the installed version of Node and NPM on the computer use the following command respectively
Step 2: For installing the previous version of Node use the following command:
Example:
Example:
Step 3: To install previous version of NPM use the following command:
Example:
Источники информации:
- http://stackoverflow.com/questions/47008159/how-to-downgrade-node-version
- http://stackoverflow.com/questions/70458080/how-to-downgrade-node-version
- http://stackoverflow.com/questions/7718313/how-to-change-to-an-older-version-of-node-js
- http://www.geeksforgeeks.org/how-to-install-the-previous-version-of-node-js-and-npm/