Read the statement by Michael Teeuw here.
Npm intstall
-
Sorry if this sounds silly question but should i only use npm install when mentioned in readme or shold this be used everytime to install any module? Thank you
-
@Damian said in Npm intstall:
should i only use npm install when mentioned in readme or shold this be used everytime to install any module?
Only when mentioned in the readme.
npm install
is used to install specific dependencies for a module. Not all modules make use of dependencies. Modules that make use of dependencies don’t all use the same dependencies. -
thank you
-
On the other hand I can’t think of any negative aspect. So if in doubt, just run
npm install
. If it is not required, it won’t do any harm -
thank you
-
@Damian if you dont intend to develop on modules you can also just do
npm install --productive
, which just downloads those ones needed for production and doesn’t download the development dependencies. -
thank you good to know