Issue
I have received a node js and angular project without node modules i need to install all packages which is mentioned in package.json file. kindly suggest the command to install node modules in both angular and node js.
Solution
Locate the package.json file in both projects (Angular and Node). And then run the install command.
npm install
or
npm i