Nodemon: 启动时崩溃

创建于 2018-06-27  ·  4评论  ·  资料来源: remy/nodemon

  • nodemon -v : 1.17.5
  • node -v : 8.11.3/9.0.0/10.5.0(它们都不起作用)
  • 操作系统:kubuntu 18.04
  • 桌面环境:kde等离子5.12.5
  • 终端:konsole 17.12.3
  • 你运行的命令:nodemon main.js

预期行为

Nodemon 像以前一样启动。 一切都很好。

实际行为

使用此堆栈跟踪崩溃

[nodemon] 1.17.5
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*
[nodemon] starting `node main.js`
/usr/lib/node_modules/nodemon/lib/monitor/watch.js:128
      throw e;
      ^

TypeError: Cannot read property 'prev' of undefined
    at Compiler.<anonymous> (/usr/lib/node_modules/nodemon/node_modules/nanomatch/lib/compilers.js:213:25)
    at Compiler.visit (/usr/lib/node_modules/nodemon/node_modules/snapdragon/lib/compiler.js:129:15)
    at Compiler.mapVisit (/usr/lib/node_modules/nodemon/node_modules/snapdragon/lib/compiler.js:143:12)
    at Compiler.compile (/usr/lib/node_modules/nodemon/node_modules/snapdragon/lib/compiler.js:168:10)
    at Snapdragon.compile (/usr/lib/node_modules/nodemon/node_modules/snapdragon/index.js:156:32)
    at /usr/lib/node_modules/nodemon/node_modules/micromatch/index.js:786:23
    at memoize (/usr/lib/node_modules/nodemon/node_modules/micromatch/index.js:859:13)
    at Function.micromatch.compile (/usr/lib/node_modules/nodemon/node_modules/micromatch/index.js:783:10)
    at create (/usr/lib/node_modules/nodemon/node_modules/micromatch/index.js:686:25)
    at /usr/lib/node_modules/nodemon/node_modules/micromatch/index.js:695:16

重现步骤

我根本不知道。 在以前的系统(linux mint 18)上一切正常。


- 倾倒

node: v10.5.0
nodemon: 1.17.5
command: /home/exeteres/.nvm/v10.5.0/bin/node /usr/bin/nodemon main.js --dump
cwd: /home/exeteres/Projects/admin
OS: linux x64
--------------
{ run: false,
  system: { cwd: '/home/exeteres/Projects/admin' },
  required: false,
  dirs: [ '/home/exeteres/Projects/admin' ],
  timeout: 1000,
  options:
   { dump: true,
     ignore:
      [ '**/.git/**',
        '**/.nyc_output/**',
        '**/.sass-cache/**',
        '**/bower_components/**',
        '**/coverage/**',
        '**/node_modules/**',
        re: /.*.*\/\.git\/.*.*|.*.*\/\.nyc_output\/.*.*|.*.*\/\.sass\-cache\/.*.*|.*.*\/bower_components\/.*.*|.*.*\/coverage\/.*.*|.*.*\/node_modules\/.*.*/ ],
     watch: [ '*.*', re: /.*\..*/ ],
     ignoreRoot:
      [ '**/.git/**',
        '**/.nyc_output/**',
        '**/.sass-cache/**',
        '**/bower_components/**',
        '**/coverage/**',
        '**/node_modules/**' ],
     restartable: 'rs',
     colours: true,
     execMap: { py: 'python', rb: 'ruby' },
     stdin: true,
     runOnChangeOnly: false,
     verbose: false,
     signal: 'SIGUSR2',
     stdout: true,
     watchOptions: {},
     execOptions:
      { script: 'main.js',
        exec: 'node',
        args: [],
        scriptPosition: 0,
        nodeArgs: undefined,
        execArgs: [],
        ext: 'js,mjs,json',
        env: {} },
     monitor:
      [ '*.*',
        '!**/.git/**',
        '!**/.nyc_output/**',
        '!**/.sass-cache/**',
        '!**/bower_components/**',
        '!**/coverage/**',
        '!**/node_modules/**' ] },
  load: [Function],
  reset: [Function: reset],
  lastStarted: 0,
  loaded: [],
  watchInterval: null,
  signal: 'SIGUSR2',
  command:
   { raw: { executable: 'node', args: [ 'main.js' ] },
     string: 'node main.js' } }

最有用的评论

这个错误是在它发生后立即发生的。 只需重新安装即可修复。 有关更多信息,请参阅https://github.com/micromatch/nanomatch/issues/15

我造成了这个错误,并在发现发生了什么后修补了它。 对给您带来的不便深表歉意,并感谢您的耐心等待。

所有4条评论

nodemon -v : 1.16.0
没有这样的问题

可能与此有关:
https://github.com/micromatch/nanomatch/issues/15

我还没有看到他们提到的补丁通过

临时修复
npm install [email protected]

这个错误是在它发生后立即发生的。 只需重新安装即可修复。 有关更多信息,请参阅https://github.com/micromatch/nanomatch/issues/15

我造成了这个错误,并在发现发生了什么后修补了它。 对给您带来的不便深表歉意,并感谢您的耐心等待。

谢谢各位。

此页面是否有帮助?
0 / 5 - 0 等级

相关问题

endquote picture endquote  ·  4评论

Mohammad-Quanit picture Mohammad-Quanit  ·  5评论

dimsmol picture dimsmol  ·  4评论

giacomorebonato picture giacomorebonato  ·  5评论

jonerer picture jonerer  ·  4评论