Mathew White
Mathew White

Reputation: 303

When should you use npm install vs npm i

Looking at npm's documentation, 'i' is an alias of 'install', would there be any circumstances where it is preferable to use the full 'npm install'?

Upvotes: 29

Views: 7863

Answers (1)

VK18
VK18

Reputation: 566

There is no specific difference between the two. It's just a lazy shortcut.

Upvotes: 55

Related Questions