Missing Script Start
问题 I'm trying to run this example. I have these errors when I start running it: npm ERR! missing script: start npm ERR! A complete log of this run can be found in: npm ERR!/home/username/.npm/_logs/2018-04-15T09_19_49_453Z-debug.log any help? 回答1: your scripts of package.json should be: "scripts": { "start": "node ./examples/app.js", "test": "echo \"Error: no test specified\" && exit 1" } 回答2: It looks like there is no start command in scripts i.e in your package.json file. Below is the start