In my project, I\'m using Angular6 for the frontend. Now what I\'m trying to do is deploy my project which is in remote server into the actual server. I\'m using npm r
npm r
Novice mistake. Make sure your package.json file is coded correctly. I had:
"start": "index node.js" instead of: "start": "node index.js"
17
Delete your package-lock.json file and node_modules folder. Then do npm cache clean
npm cache clean --force do npm install