I’m getting started with a MERN stack, some tutorials I’m following, install more than one package at a time....
What do I install and when?
I have a MongoDB and a collection ready, I’m using compass
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (3)
Add the depencies space separated after
npm i
Eg.
npm i <package 1> <package 2> ..... <package n>
there’s nice post on mern stack dev.to/zeeshanhshaheen/how-i-built...