30

我从事的项目是用 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'));
});

我用谷歌搜索了很多,但我没有找到适合我的正确答案。

4

13 回答 13

62

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

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

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

于 2016-10-05T11:03:15.930 回答
16

关于以下行的错误:

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

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

停止其他应用程序解决了该问题。

于 2017-09-08T05:06:11.313 回答
6

我在 Ubuntu 上运行我的 create-react-app 时遇到了类似的错误,同时运行了一个命令npm start

当我跑步时它得到解决sudo npm start

我认为问题可能是应用程序没有足够的权限。

于 2018-06-28T13:36:33.527 回答
2

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

于 2016-08-11T02:03:37.067 回答
2

尝试杀死其他 gulp 进程。

ps -ax | grep gulp
kill -9 <number>
于 2018-01-26T12:05:18.927 回答
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
于 2017-04-25T13:22:29.797 回答
1

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

# netstat -nltp

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

在某些情况下,如果使用静态 IP,IP 地址也可能会出错

于 2017-08-08T08:53:43.267 回答
1

events.js:160

这是因为

  1. 使用另一个节点的端口,因此您可以从 server.js 更改节点的端口

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

于 2018-02-23T06:06:40.597 回答
1

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

在此处输入图像描述

我如何找到解决方案:

  • 我的域没有正确配置。检查图像,我正在尝试访问已禁用或未正确配置的 pid.contentcentral.co 域。因此抛出错误。更正配置和问题已解决。

其他要点:

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

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

  • 错误:听 EADDRINUSE

    当您看到此行错误时,不是您的 IP 地址/域,而是端口确实出现了一些问题,可能已经在使用中。

于 2018-05-07T07:17:21.433 回答
1

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

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

我认为这是因为文件夹没有摩根记录器的写权限。

于 2018-09-20T11:35:52.840 回答
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;
            };
于 2019-02-06T09:52:55.000 回答
0

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

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

我希望它会奏效。

于 2020-03-15T18:37:20.820 回答
0

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

于 2020-07-19T02:04:05.820 回答