当我运行npm start
时,会发生上述错误。
我在package.json中的脚本:
"start": "concurrently \"nodemon server\" \"react-scripts start\"",
任何帮助都会很棒!
答案 0 :(得分:2)
您可以采取的一种方法是(您可以相应地修改):
"server": "nodemon index.js",
"react": "react-scripts start"
"dev": "concurrently \"npm run server \" \"npm run react\" "
然后执行npm run dev
您可以阅读有关concurrently here
的更多信息