Node, NPM, Yarn & NVM

Now it’s time to start configuring our development environment. A good node.js is crucial as a primarily JavaScript developer, and it is vital to make sure it’s working well.

NVM

There is no better way to manage node than using NVM

# NVM…


This content originally appeared on DEV Community and was authored by DEV Community

Now it's time to start configuring our development environment. A good node.js is crucial as a primarily JavaScript developer, and it is vital to make sure it's working well.

NVM

There is no better way to manage node than using NVM

# NVM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash

Updating NVM

To update NVM to a newer version, you can use this command without losing your globals. Remember to change <version> to the version you want installed.

nvm install <version> --reinstall-packages-from=$(nvm current)
nvm use <version>
nvm alias default <version>

Yarn

I prefer to use Yarn as the package manager, but this is a personal selection.

# Yarn
curl -o- -L https://yarnpkg.com/install.sh | bash

NPMJS.com

Set the defaults value for your NPM user

npm set init.author.name "your name"
npm set init.author.email "you@example.com"
npm set init.author.url "example.com"

Then login into NPM with

npm adduser


This content originally appeared on DEV Community and was authored by DEV Community


Print Share Comment Cite Upload Translate Updates
APA

DEV Community | Sciencx (2022-03-09T16:32:08+00:00) Node, NPM, Yarn & NVM. Retrieved from https://www.scien.cx/2022/03/09/node-npm-yarn-nvm/

MLA
" » Node, NPM, Yarn & NVM." DEV Community | Sciencx - Wednesday March 9, 2022, https://www.scien.cx/2022/03/09/node-npm-yarn-nvm/
HARVARD
DEV Community | Sciencx Wednesday March 9, 2022 » Node, NPM, Yarn & NVM., viewed ,<https://www.scien.cx/2022/03/09/node-npm-yarn-nvm/>
VANCOUVER
DEV Community | Sciencx - » Node, NPM, Yarn & NVM. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/03/09/node-npm-yarn-nvm/
CHICAGO
" » Node, NPM, Yarn & NVM." DEV Community | Sciencx - Accessed . https://www.scien.cx/2022/03/09/node-npm-yarn-nvm/
IEEE
" » Node, NPM, Yarn & NVM." DEV Community | Sciencx [Online]. Available: https://www.scien.cx/2022/03/09/node-npm-yarn-nvm/. [Accessed: ]
rf:citation
» Node, NPM, Yarn & NVM | DEV Community | Sciencx | https://www.scien.cx/2022/03/09/node-npm-yarn-nvm/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.