events.js:160 throw er; //未处理的错误'事件

时间:2016-08-09 02:40:13

标签: javascript node.js gulp node-modules gulp-load-plugins

我工作的项目是用gulp构建的。

最近我将节点版本更新到v6.3.1。然后出了点问题。

一个名为' html'的任务抛出错误。这是它的错误代码的一部分。

bogon:toClient work$ gulp html
(node:2519) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.

[10:26:10] Using gulpfile ~/Project/TIME_Cancer_Treatment_Centers_of_America(CTCA)/toClient/gulpfile.js
[10:26:10] Starting 'html'...
(node:2519) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.

events.js:160
      throw er; // Unhandled 'error' event
      ^
Error: CSS parse error scripts/vendor.js: Unexpected input
    1 |!function(t,e){"object"==typeof module&&"object"==typeof module.exports?module.exports=t.document?e(t,!0):function(t){if(!t.document)throw new Error("jQuery requires a window with a document");return e(t)}:e(t)}("undefined"!=typeof window?window:this,function(t,e){function i(t){var e="length"in t&&t.length,i=J.type(t);return"function"!==i&&!J.isWindow(t)&&(!(1!==t.nodeType||!e)||("array"===i||0===e||

任务代码' html':

var $ = require('gulp-load-plugins')();

gulp.task('html', function() {
  var assets = $.useref.assets({searchPath: ['.tmp']});

  return gulp.src('app/*.html')
    .pipe(assets)
    .pipe($.if('*.js', $.uglify()))
    .pipe($.if('*.css', $.csso()))
    .pipe(assets.restore())
    .pipe($.useref())
    .pipe($.if('*.html', $.minifyHtml({conditionals: true, loose: true})))
    .pipe(gulp.dest('dist'));
});

我google了很多,但我找不到适合我的正确答案。

15 个答案:

答案 0 :(得分:45)

删除node_modules文件夹,清除npm缓存文件以及进行全新安装,可以解决此问题。

rm -rf node_modules && npm cache clean --force && npm install

来源:https://github.com/ember-cli/ember-cli/issues/3087#issuecomment-71327402

答案 1 :(得分:13)

关于以下行的错误:

events.js:160
      throw er; // Unhandled 'error' event

我的问题是我已经在另一个本地节点应用程序上打开了端口。

停止其他应用已解决此问题。

答案 2 :(得分:2)

最近,我将节点版本更改为v5.10.0,一切都很好。

答案 3 :(得分:2)

在Ubuntu上运行我的create-react-app时,同时运行命令npm start

时遇到了类似的错误

当我运行sudo npm start

时,它就解决了

我认为应用程序权限不足可能是一个问题。

答案 4 :(得分:1)

我遇到了与events.js类似的问题。

[19:59:06] Starting 'jekyll-async'...

events.js:72
    throw er; // Unhandled 'error' event
          ^
Error: spawn ENOENT
    at errnoException (child_process.js:1011:11)
    at Process.ChildProcess._handle.onexit (child_process.js:802:34)

在我的情况下出现了问题,因为我忘了从我的Gemfile安装gems(完成系统重新安装后)。

所以,治愈我的是:

gem install jekyll

答案 5 :(得分:1)

在我的情况下,端口已经在使用..

# netstat -nltp

检查是否有任何与端口一起运行的东西试图启动..如果是更改端口并尝试。

如果使用静态IP

,某些情况下IP地址也可能出错

答案 6 :(得分:1)

尝试杀死其他gulp进程。

ps -ax | grep gulp
kill -9 <number>

答案 7 :(得分:1)

启动laravel-echo-server npm包时出现同样的错误。 PFA图像供参考。我想如果你因为任何npm包而得到错误,这个答案将对你有所帮助。

enter image description here

我如何找到解决方案:

  • 我的域名配置不正确。检查图片,我试图点击pid.contentcentral.co域,该域已被禁用或未正确配置。因此抛出错误。配置和问题的更正已解决。

其他要点:

  • 错误:在Node.js中侦听EADDRNOTAVAIL错误

    当您看到错误的这一行而不是端口但是您的IP地址/域肯定有问题。

  • 错误:收听EADDRINUSE

    当你看到这行错误而不是你的IP地址/域但是肯定端口有问题可能已经在使用。

答案 8 :(得分:1)

更改端口号对我有用。由于端口5000已在我的系统中使用。 希望对您有帮助

答案 9 :(得分:1)

在运行命令npm start时,我在Ubuntu上遇到类似的错误

运行sudo npm start解决了我的问题

我认为这是因为文件夹没有Morgan logger的写入权限。

答案 10 :(得分:0)

您可以卸载您的节点,并安装最新版本。

答案 11 :(得分:0)

events.js:160

这是因为

  1. 使用其他节点的端口,以便从server.js

    更改节点的端口

    2.或停止其他应用程序使用相同的端口。

答案 12 :(得分:0)

解决方案: $ event =>只能用于.ts文件。

 $scope.openFromCalendar = ($event) => {
        $event.preventDefault();
        $event.stopPropagation();

        $scope.fromCalendarOpened = true;
        $scope.ToCalendarOpened = false;
    };

如果您使用的是.js文件,请像这样使用

$scope.openFromCalendar = function ($event) {
                $event.preventDefault();
                $event.stopPropagation();
                $scope.fromCalendarOpened = true;
                $scope.ToCalendarOpened = false;
            };

答案 13 :(得分:0)

尝试运行以下命令,然后执行您要执行的操作

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

我希望它能起作用。

答案 14 :(得分:0)

设置环境变量windows / system32
它将适用于Windows