错误!代码ELIFECYCLE(首发)
npm ERR! code ELIFECYCLE (starting issue)
感谢您阅读本文并帮助解决问题。
我正尝试在 Windows 机器上 运行 nodejs 并在安装 expo-cli 后启动 expo 客户端。最初它可以工作,但实时刷新或任何其他刷新都不起作用,所以我尝试再次删除 uninstall/reinstall nodejj,现在我根本无法启动它。
我已尝试从此处进行故障排除步骤:npm ERR! code ELIFECYCLE
但不幸的是他们根本没有帮助...
我不知道是否有办法执行全新安装,因为它可能是保存在缓存中某处的东西(即使我完全删除了目录)。我愿意接受这里的任何建议。
提前一百万感谢您的所有回答和评论。
这是来自 cli 的错误:
C:\Users\Sergej\NewProject>npm start
> @ start C:\Users\Sergej\NewProject
> expo start
Starting project at C:\Users\Sergej\NewProject
Expo DevTools is running at http://localhost:19002
Opening DevTools in the browser... (press shift-d to disable)
error Invalid regular expression: /(.*\__fixtures__\.*|node_modules[\\]react[\\]dist[\\].*|website\node_modules\.*|heapCapture\bundle\.js|.*\__tests__\.*)$/: Unterminated character class. Run CLI with --verbose flag for more details.
Metro Bundler process exited with code 1
Set EXPO_DEBUG=true in your env to view the stack trace.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ start: `expo start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ start 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\Sergej\AppData\Roaming\npm-cache\_logs19-10-31T16_44_26_903Z-debug.log
这是日志文件文本:
0 info it worked if it ends with ok
1 verbose cli [
1 verbose cli 'C:\Program Files\nodejs\node.exe',
1 verbose cli 'C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js',
1 verbose cli 'start'
1 verbose cli ]
2 info using npm@6.12.0
3 info using node@v12.13.0
4 verbose run-script [ 'prestart', 'start', 'poststart' ]
5 info lifecycle @~prestart: @
6 info lifecycle @~start: @
7 verbose lifecycle @~start: unsafe-perm in lifecycle true
8 verbose lifecycle @~start: PATH: C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin;C:\Users\Sergej\NewProject\node_modules\.bin;C:\Users\Sergej\AppData\Roaming\npm;C:\Program Files\nodejs\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\nodejs\;C:\Users\Sergej\AppData\Local\Microsoft\WindowsApps;C:\Users\Sergej\AppData\Roaming\npm
9 verbose lifecycle @~start: CWD: C:\Users\Sergej\NewProject
10 silly lifecycle @~start: Args: [ '/d /s /c', 'expo start' ]
11 silly lifecycle @~start: Returned: code: 1 signal: null
12 info lifecycle @~start: Failed to exec start script
13 verbose stack Error: @ start: `expo start`
13 verbose stack Exit status 1
13 verbose stack at EventEmitter.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\index.js:332:16)
13 verbose stack at EventEmitter.emit (events.js:210:5)
13 verbose stack at ChildProcess.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\lib\spawn.js:55:14)
13 verbose stack at ChildProcess.emit (events.js:210:5)
13 verbose stack at maybeClose (internal/child_process.js:1021:16)
13 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5)
14 verbose pkgid @
15 verbose cwd C:\Users\Sergej\NewProject
16 verbose Windows_NT 10.0.18362
17 verbose argv "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js" "start"
18 verbose node v12.13.0
19 verbose npm v6.12.0
20 error code ELIFECYCLE
21 error errno 1
22 error @ start: `expo start`
22 error Exit status 1
23 error Failed at the @ start script.
23 error This is probably not a problem with npm. There is likely additional logging output above.
24 verbose exit [ 1, true ]
因此,在花费大量时间尝试解决问题后(通常我发现的所有步骤都涉及以某种方式重新安装依赖项)我找到了答案。
原来最新的 node.js 问题与 Windows 有一些问题,对我来说解决这个问题的唯一方法是下载以前的版本。我从以下位置下载它:
https://nodejs.org/en/download/releases/
为我修复它的版本是 Node.js 10.x
快速无痛(几乎)
我希望这对遇到类似问题的人有所帮助...
我遇到了类似的问题,我首先尝试了这些步骤:
rm -rf node_modules
rm -rf package-lock.json
npm install
npm start
但没有任何效果。
所以我在终端消息中挖掘,发现 babel-eslint
依赖项指向与我正在处理的目录不同的其他项目目录,然后我朝那个方向寻找 node_modules
文件夹,瞧!那是关于 运行 npm install
的问题,我当然不应该这样做。
在我的项目容器文件夹中一个简单的 rm -rf node_modules
就足以让一切重新开始!
我收到了完全相同的错误消息。这可能无关紧要,但我发现了我的错误。使用 VS 2019CE node.js 项目。对我来说,是我输入了类似 debug("trying to log something to the console") 的内容,然后我认为这是错误的并添加了丢失的控制台键 console.debug("bla") 然后运行但失败了...
问题是 VS 自动添加了
import { debug } from 'webpack';
我简单地把它注释掉,它又开始工作了。
我把它留给最终做同样事情的人。
我尝试在 gitlab ci 上构建时遇到了同样的问题,我通过定义 CI: false
环境变量来定义 cided 之后它起作用了,但我没有需要更改节点或 npm 版本。
感谢您阅读本文并帮助解决问题。
我正尝试在 Windows 机器上 运行 nodejs 并在安装 expo-cli 后启动 expo 客户端。最初它可以工作,但实时刷新或任何其他刷新都不起作用,所以我尝试再次删除 uninstall/reinstall nodejj,现在我根本无法启动它。
我已尝试从此处进行故障排除步骤:npm ERR! code ELIFECYCLE
但不幸的是他们根本没有帮助...
我不知道是否有办法执行全新安装,因为它可能是保存在缓存中某处的东西(即使我完全删除了目录)。我愿意接受这里的任何建议。
提前一百万感谢您的所有回答和评论。
这是来自 cli 的错误:
C:\Users\Sergej\NewProject>npm start
> @ start C:\Users\Sergej\NewProject
> expo start
Starting project at C:\Users\Sergej\NewProject
Expo DevTools is running at http://localhost:19002
Opening DevTools in the browser... (press shift-d to disable)
error Invalid regular expression: /(.*\__fixtures__\.*|node_modules[\\]react[\\]dist[\\].*|website\node_modules\.*|heapCapture\bundle\.js|.*\__tests__\.*)$/: Unterminated character class. Run CLI with --verbose flag for more details.
Metro Bundler process exited with code 1
Set EXPO_DEBUG=true in your env to view the stack trace.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ start: `expo start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ start 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\Sergej\AppData\Roaming\npm-cache\_logs19-10-31T16_44_26_903Z-debug.log
这是日志文件文本:
0 info it worked if it ends with ok
1 verbose cli [
1 verbose cli 'C:\Program Files\nodejs\node.exe',
1 verbose cli 'C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js',
1 verbose cli 'start'
1 verbose cli ]
2 info using npm@6.12.0
3 info using node@v12.13.0
4 verbose run-script [ 'prestart', 'start', 'poststart' ]
5 info lifecycle @~prestart: @
6 info lifecycle @~start: @
7 verbose lifecycle @~start: unsafe-perm in lifecycle true
8 verbose lifecycle @~start: PATH: C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin;C:\Users\Sergej\NewProject\node_modules\.bin;C:\Users\Sergej\AppData\Roaming\npm;C:\Program Files\nodejs\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\nodejs\;C:\Users\Sergej\AppData\Local\Microsoft\WindowsApps;C:\Users\Sergej\AppData\Roaming\npm
9 verbose lifecycle @~start: CWD: C:\Users\Sergej\NewProject
10 silly lifecycle @~start: Args: [ '/d /s /c', 'expo start' ]
11 silly lifecycle @~start: Returned: code: 1 signal: null
12 info lifecycle @~start: Failed to exec start script
13 verbose stack Error: @ start: `expo start`
13 verbose stack Exit status 1
13 verbose stack at EventEmitter.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\index.js:332:16)
13 verbose stack at EventEmitter.emit (events.js:210:5)
13 verbose stack at ChildProcess.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\lib\spawn.js:55:14)
13 verbose stack at ChildProcess.emit (events.js:210:5)
13 verbose stack at maybeClose (internal/child_process.js:1021:16)
13 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5)
14 verbose pkgid @
15 verbose cwd C:\Users\Sergej\NewProject
16 verbose Windows_NT 10.0.18362
17 verbose argv "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js" "start"
18 verbose node v12.13.0
19 verbose npm v6.12.0
20 error code ELIFECYCLE
21 error errno 1
22 error @ start: `expo start`
22 error Exit status 1
23 error Failed at the @ start script.
23 error This is probably not a problem with npm. There is likely additional logging output above.
24 verbose exit [ 1, true ]
因此,在花费大量时间尝试解决问题后(通常我发现的所有步骤都涉及以某种方式重新安装依赖项)我找到了答案。
原来最新的 node.js 问题与 Windows 有一些问题,对我来说解决这个问题的唯一方法是下载以前的版本。我从以下位置下载它:
https://nodejs.org/en/download/releases/
为我修复它的版本是 Node.js 10.x
快速无痛(几乎)
我希望这对遇到类似问题的人有所帮助...
我遇到了类似的问题,我首先尝试了这些步骤:
rm -rf node_modules
rm -rf package-lock.json
npm install
npm start
但没有任何效果。
所以我在终端消息中挖掘,发现 babel-eslint
依赖项指向与我正在处理的目录不同的其他项目目录,然后我朝那个方向寻找 node_modules
文件夹,瞧!那是关于 运行 npm install
的问题,我当然不应该这样做。
在我的项目容器文件夹中一个简单的 rm -rf node_modules
就足以让一切重新开始!
我收到了完全相同的错误消息。这可能无关紧要,但我发现了我的错误。使用 VS 2019CE node.js 项目。对我来说,是我输入了类似 debug("trying to log something to the console") 的内容,然后我认为这是错误的并添加了丢失的控制台键 console.debug("bla") 然后运行但失败了... 问题是 VS 自动添加了
import { debug } from 'webpack';
我简单地把它注释掉,它又开始工作了。 我把它留给最终做同样事情的人。
我尝试在 gitlab ci 上构建时遇到了同样的问题,我通过定义 CI: false
环境变量来定义 cided 之后它起作用了,但我没有需要更改节点或 npm 版本。