|
|
|
|
|
by rahilsondhi
3322 days ago
|
|
Using npm alone is like using bundler without a Gemfile.lock. If one person does `npm install` today, and a new teammate does `npm install` in a month, the new teammate will install different versions. With yarn, there is a yarn.lock to make sure everyone gets the same versions when they run `yarn install`. Also, yarn is way faster. |
|