install command shortcut in JavaScript

All npm commands have two forms: long and short. The long form is more understandable, and the shortened one is faster to write that is often used by professionals.

For example, the install command will be shortened to i. Let's try the shortened form:

npm i lodash

Rewrite the command in shortened form:

npm install underscore
enru