|
|
|
|
|
by inglor
3741 days ago
|
|
When you `npm install` a package by default when other users `npm install` it it will install the most recent patch version - even if it's different from the one you installed. So if you install dependencies through `npm install --save` which is the default and advertized way - you can get completely different code between production and staging. As a library maintainer, patches breaking the library is something that happens (not often, but still) - testing can eliminate a lot but not all bugs. |
|