【发布时间】:2018-07-13 13:56:27
【问题描述】:
我在 Ubuntu 17.10 上运行 youtube tutorial,当我运行构建命令 ng build --prod && electron . 时,结果是:
启动应用程序时出错 无法在 /home/ole/angular-electron 找到 Electron 应用程序
找不到模块'/home/ole/angular-electron'
应用程序编译良好,只是 electron . 步骤失败。包含main 属性的package.json 内容如下所示:
"name": "angular-electron",
"version": "0.0.0",
"license": "MIT",
"main": "main.js",
我还尝试运行第一个答案中指示的命令,结果如下:
ole@mki:~/angular-electron$ ng build --prod && npm run electron
Date: 2018-02-03T02:57:31.154Z
Hash: a2a64f9c18abdabf8e6e
Time: 25113ms
chunk {0} polyfills.f20484b2fa4642e0dca8.bundle.js (polyfills) 59.4 kB [initial] [rendered]
chunk {1} main.34c2037568943aee5abc.bundle.js (main) 152 kB [initial] [rendered]
chunk {2} styles.9c0ad738f18adc3d19ed.bundle.css (styles) 79 bytes [initial] [rendered]
chunk {3} inline.ef66fc99c35b976a47ae.bundle.js (inline) 1.45 kB [entry] [rendered]
> angular-electron@0.0.0 electron /home/ole/Junk/angular-electron
> electron .
Error launching app
Unable to find Electron app at /home/ole/Junk/angular-electron
Cannot find module '/home/ole/Junk/angular-electron'
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! angular-electron@0.0.0 electron: `electron .`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the angular-electron@0.0.0 electron 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! /home/ole/.npm/_logs/2018-02-03T02_57_32_025Z-debug.log
ole@mki:~/Junk/angular-electron$ ng build --prod && npm run electron
Date: 2018-02-03T02:59:37.741Z
Hash: a2a64f9c18abdabf8e6e
Time: 25083ms
chunk {0} polyfills.f20484b2fa4642e0dca8.bundle.js (polyfills) 59.4 kB [initial] [rendered]
chunk {1} main.34c2037568943aee5abc.bundle.js (main) 152 kB [initial] [rendered]
chunk {2} styles.9c0ad738f18adc3d19ed.bundle.css (styles) 79 bytes [initial] [rendered]
chunk {3} inline.ef66fc99c35b976a47ae.bundle.js (inline) 1.45 kB [entry] [rendered]
> angular-electron@0.0.0 electron /home/ole/Junk/angular-electron
> electron .
Error launching app
Unable to find Electron app at /home/ole/Junk/angular-electron
Cannot find module '/home/ole/Junk/angular-electron'
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! angular-electron@0.0.0 electron: `electron .`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the angular-electron@0.0.0 electron 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! /home/ole/.npm/_logs/2018-02-03T02_59_38_568Z-debug.log
ole@mki:~/Junk/angular-electron$ ng build --prod && npm run electron .
Date: 2018-02-03T03:01:35.087Z
Hash: a2a64f9c18abdabf8e6e
Time: 25017ms
chunk {0} polyfills.f20484b2fa4642e0dca8.bundle.js (polyfills) 59.4 kB [initial] [rendered]
chunk {1} main.34c2037568943aee5abc.bundle.js (main) 152 kB [initial] [rendered]
chunk {2} styles.9c0ad738f18adc3d19ed.bundle.css (styles) 79 bytes [initial] [rendered]
chunk {3} inline.ef66fc99c35b976a47ae.bundle.js (inline) 1.45 kB [entry] [rendered]
> angular-electron@0.0.0 electron /home/ole/Junk/angular-electron
> electron . "."
Error launching app
Unable to find Electron app at /home/ole/Junk/angular-electron
Cannot find module '/home/ole/Junk/angular-electron'
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! angular-electron@0.0.0 electron: `electron . "."`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the angular-electron@0.0.0 electron 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! /home/ole/.npm/_logs/2018-02-03T03_01_35_948Z-debug.log
还尝试使用electron . 单独运行电子命令。结果是一样的。它抱怨找不到electron。还尝试从node_modules 目录运行它,如下所示:
ole@mki:~/angular-electron$ ./node_modules/electron/dist/electron 。 启动应用程序时出错 在 /home/ole/angular-electron 找不到 Electron 应用程序
找不到模块'/home/ole/angular-electron'
想法?
【问题讨论】:
标签: javascript angular electron