'Heroku throws npm ERR! Missing script: "start" at me
Solution 1:[1]
In your package.json folder, under "scripts", you have to add the code you listed. It should look like this:
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js" // your code
},
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | econobro |

