Update NodeJS with npm
Emmanuel Gautier / October 26, 2014
1 min read
Update : Now, nvm can be simpler to manage NodeJS versions. You can install the version you want and those versions can be differents across all your projects and shared with the file .nvmrc
. More informations on the nvm README
New NodeJS releases are done often, so you need to keep your installation up to date. To do so, you can use your Linux distribution package manager (apt, dnf, ...) or brew for OSX. Another way is to use npm.
Here some command lines to update NodeJS on your dev environment. The update will take the latest stable version of NodeJS.
sudo npm cache clean -f
sudo npm install -g n
sudo n stable
If you only want to switch from one version to another, just replace the previous line with the following line. Of course, you can update the version number depending on your need.
sudo n 0.10.33
If the installation is done, check the version number with the following command :
node -v
Related Posts
How to use Chakra UI Button and Link components with NextJS Link
There is some glue to add to make Chakra UI and NextJS work together. The Chakra UI components do not generate the "a" tag by default for a link. Let's see how to use the Chakra button to generate links between pages.
Extends Express session SessionData type
Express Session allows to store a lot of different data. There is a Typescript type named `SessionData` which allow to know what contains a session but not the data you will defined after without defining them.
Keep the same Node.js version between local environment and Github Actions
It can be complicated to have the same Node version between the local environment and the CI/CD. The latest Node.js version or the latest lts is released recently and if you want to upgrade to the Node version, usually you can forget to configure one environment.
Featured Posts
How to deal with Docker Hub rate limit on AWS
Since 2020, DockerHub has been limited to only 200 container image pull requests per six hours. This article will help you to deal with this limitation on AWS.
How to enable Python type checking in VSCode
Python now has support for type hints. In this article, we will see how to enable better IntelliSense and type checking analysis in VSCode.
How to manage Internationalization with NextJS SSG
Staticaly generating a website with the NextJS framework in different languages is not so obvious.