npm start 在 windows 上抛出以下错误

npm start is throwing the following error on windows

你好我用Windows10和最近安装的意思。但是,当我使用 npm start 命令启动 npm 时,出现以下错误。我什至安装了 express。

C:\>npm start
npm ERR! Windows_NT 6.3.9600
npm ERR! argv "C:\Program Files\nodejs\\node.exe" "C:\ProgramFiles\nodejs\node_modules\npm\bin\npm-cli.js" "start"
npm ERR! node v0.12.7
npm ERR! npm  v2.11.3
npm ERR! path C:\package.json
npm ERR! code ENOENT
npm ERR! errno -4058

npm ERR! enoent ENOENT, open 'C:\package.json'
npm ERR! enoent This is most likely not a problem with npm itself
npm ERR! enoent and is related to npm not being able to find a file.
npm ERR! enoent

npm ERR! Please include the following file with any support request:
npm ERR!     C:\npm-debug.log

正如它所说,这不是 npm 本身的问题。

npm 似乎无法访问您的 package.json,或者它根本不存在于给定路径中。 检查 pacakge.json.

的路径

此外,您应该在创建有效的 package.json 文件之前执行 npm init,如果它不存在的话。