DEV Community

Manav Misra
Manav Misra

Posted on • Edited on

Install `learnyounode`

Install learnyounode Globally

As per these directions, npm install -g learnyounode

This will use npm to globally install learnyounode.

Normally, it's not recommended to do npm install -g (installing packages globally) due to versioning changes possibly breaking ๐Ÿคฏ things. However, learnyounode is a utility that we want to be able to run from anywhere on our system - it's not 'scoped' or 'locked' to a specific version(s) for a specific project.

Check It โœ…

Simply type learnyounode and you should get the main menu that looks like this:

learnyounode main menu

Create a Directory to Organize Our Work

As we work through this series together, we'll be creating multiple files, so you should designate a directory ๐Ÿ“ for them.

Go to your home directory ๐Ÿ“ by entering cd in your terminal.

Then create your directory structure using: mkdir. If you need to make nested directories, you could use -p. For example: mkdir -p Code/learnyounode **(HINT: It's a convention to capitalize directory ๐Ÿ“ names - but 'learnyounode' is a bit different ๐Ÿค“).

Top comments (0)