We have 2 different dependencies in our projects. One at top-level (for express/mongo), and one in frontend (react).
Currently, running npm install only installs the top-level dependency.
Automating npm i for frontend is as easy as having a postinstall script that cd frontend && npm i. I'ma do that really quick!
We have 2 different dependencies in our projects. One at top-level (for express/mongo), and one in frontend (react). Currently, running
npm install
only installs the top-level dependency.Automating
npm i
for frontend is as easy as having apostinstall
script thatcd frontend && npm i
. I'ma do that really quick!