我有一个带有index.js和package.json的简单项目。当我运行命令npm start
或npm run start
时,没有任何记录。
但是运行命令node index.js
会输出日志消息。
我正在使用Windows 10,节点v10.16.3
和npm 6.9.0
。
// index.js
console.log('hello world')
// package.json
{
"name": "commands",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "node index.js"
},
"keywords": [],
"author": "",
"license": "ISC"
}
更新: 我还尝试为Vue项目提供服务,但它没有用。 这是非常奇怪的行为。