What is the difference between npm install
and npm install --save
?
I try to install lodash.filter
using npm install --save lodash.filter
. I thought it install the packet + describes it in package.json.
But the system says, she do not understand, what lodash.filter
is.
Should I install lodash.filter
again using npm install lodash.filter
? Or what should I do? Uninstalling lodash.filter
and trying to install it again?