|
|
|
|
|
by taeric
816 days ago
|
|
Most any deployment based setup will have a separation between the code that is executed on the developer's machine and the code that is run on a built application? Yes, it is common for developers to have some unit/build testing setup available so that they can run the code locally, but even that should be done by a system that makes sure anything actually running during the test is declared as part of the project workspace. More directly, it is common for many package managers to try and do a global install of some things. If not global for the computer, for the current user. Thankfully, this is changing a lot. (At least, I think it is?) |
|
In the case of NPM with post-install scripts disabled, you'll simply get pwned when you `npm start` rather than `npm install`.