Reputation: 3394
I am about to install this npm package and it says npm install -D load-grunt-config
. What does the -D
flag do?
Upvotes: 290
Views: 114123
Reputation: 8515
The -D
flag is the shortcut for: --save-dev
. Source: https://docs.npmjs.com/cli/install
-D, --save-dev: Package will appear in your devDependencies.
Upvotes: 339
Reputation: 1336
As described in the NPM Install Docs:
-D,
--save-dev
: Package will appear in yourdevDependencies.
Which means that the package will not be installed if you do npm install --production
.
A detailed explanation of the different types of dependencies: SO-Answer
Upvotes: 43