不能 运行 'npm start' ReactJS

Can not run 'npm start' ReactJS

我是 ReactJS nad Yeoman 生成器的新手。所以我有一个问题,因为当我用这个命令生成项目时

  1. npm 安装-g 哟
  2. npm install -g generator-react-webpack
  3. 哟 react-webpack

然后我设置项目名称,使用css,并启用postcss。 当我尝试使用表扬 npm start # 或 npm 运行 serve

  1. npm 运行 服务

    @0.0.1 serve C:\Users\user\Desktop\ProjectReact node server.js --env=dev

    events.js:183
          throw er; // Unhandled 'error' event
          ^
    
    Error: listen EACCES 127.0.0.1:8000
        at Object._errnoException (util.js:992:11)
        at _exceptionWithHostPort (util.js:1014:20)
        at Server.setupListenHandle [as _listen2] (net.js:1338:19)
        at listenInCluster (net.js:1396:12)
        at GetAddrInfoReqWrap.doListen [as callback] (net.js:1505:7)
        at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:97:10)
    npm ERR! code ELIFECYCLE
    npm ERR! errno 1
    npm ERR! @0.0.1 serve: `node server.js --env=dev`
    npm ERR! Exit status 1
    npm ERR!
    npm ERR! Failed at the @0.0.1 serve script.
    npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
    
    npm ERR! A complete log of this run can be found in:
    npm ERR!     C:\Users\user\AppData\Roaming\npm-cache\_logs18-05-25T07_27_23_660Z-debug.log
    

您用于 运行 您 server.js 文件中的节点应用程序的端口是 8000,它已经被占用,其他一些进程正在 运行 上。

您可以终止 8000 端口上的当前 运行ning 进程,或者将 server.js 文件中的端口更改为 8000 端口以外的其他端口。并再次尝试 运行ning。