Reputation: 35
Is there any difference between doing npm install firebase --save and npm install --save firebase?
npm install firebase --save
npm install --save firebase
Upvotes: 0
Views: 133
Reputation: 69
These two commands will behave exactly the same.
Upvotes: 1