spawn ENOENT node.js error

spawn ENOENT node.js error

本文关键字:error js node ENOENT spawn      更新时间:2023-09-26

我已经用express-generator启动了一个node.js应用程序,我有一个奇怪的问题,我不能通过浏览器两次查看页面,第一次它加载得很好,第二次它不像节点进程结束时出现以下错误:

GET / 304 412ms
events.js:72
        throw er; // Unhandled 'error' event
              ^
Error: spawn ENOENT
    at errnoException (child_process.js:988:11)
    at Process.ChildProcess._handle.onexit (child_process.js:779:34)

package.json

{
  "name": "example01-express",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "start": "node-dev ./bin/www"
  },
  "dependencies": {
    "body-parser": "~1.0.0",
    "cookie-parser": "~1.0.1",
    "debug": "~0.7.4",
    "express": "~4.2.0",
    "jade": "~1.3.0",
    "morgan": "~1.0.0",
    "node-compass": "0.2.3",
    "static-favicon": "~1.0.0"
  },
  "devDependencies": {
    "grunt": "^0.4.5",
    "grunt-contrib-cssmin": "*",
    "grunt-contrib-jshint": "^0.10.0",
    "grunt-contrib-sass": "*",
    "grunt-contrib-uglify": "*",
    "grunt-contrib-watch": "*",
    "grunt-cssc": "*",
    "grunt-htmlhint": "*",
    "matchdep": "*"
  }
}

Compass没有安装在我的路径中,因为我假设节点库有它的JS实现。对于任何有类似问题的人来说,gem instal compass应该修复它。罗盘文档