--save VS --save-dev
When installing npm packages, there are two options provided:
—save (-S)
—save-dev (-D)
So what is the diff?
npm install <package> —save
Is equivalent to npm install <package>, which is the default behavior.
It install the package under node_mo...
blog.zackhu.com1 min read