2016-02-28 95 views
7

我嘗試使用電子打包和該命令來包裝我的應用程序:電子-打包:找不到模塊

electron-packager . FooBar --platform=darwin --arch=x64 --version=0.36.9 

(我使用MacOSX的)應用程序的創建,但是當我運行它,我得到一個彈出表示本:

未捕獲的異常:

Error: Cannot find module '/Users/myUser/myApp/FooBar-darwin-x64/FooBar.app/Contents/Resources/app/app:/host/menu.html' 
    at Function.Module._resolveFilename (module.js:338:15) 
    at Function.Module._load (module.js:289:25) 
    at Object.<anonymous> (/Users/myUser/myApp/FooBar-darwin-x64/FooBar.app/Contents/Resources/atom.asar/browser/lib/init.js:158:8) 
    at Module._compile (module.js:425:26) 
    at Object.Module._extensions..js (module.js:432:10) 
    at Module.load (module.js:356:32) 
    at Function.Module._load (module.js:313:12) 
    at Function.Module.runMain (module.js:457:10) 
    at startup (node.js:151:18) 
    at node.js:1007:3 
此文件夾中

「/Users/myUser/myApp/FooBar-darwin-x64/FooBar.app/Contents/Resources/app」 有指向html文件「menu.html」的條目,但它se EMS電子無法找到它......

這是我app.js:

var app = require('app'); // Module to control application life. 
var BrowserWindow = require('browser-window'); // Module to create native browser window. 

var mainWindow = null; 


// This method will be called when Electron has done everything 
// initialization and ready for creating browser windows. 
app.on('ready', function() { 

    // Create the browser window. 
    mainWindow = new BrowserWindow({width: 1024, height: 768}); 

    // and load the index.html of the app. 
    mainWindow.loadUrl('file://' + __dirname + '/menu.html'); 

    mainWindow.openDevTools({detach: true}); 

    // Emitted when the window is closed. 
    mainWindow.on('closed', function() { 
    mainWindow = null; 
    }); 

}); 

你有什麼可能是問題的任何想法嗎?

謝謝。

回答

10

有兩件事情可以嘗試:

+0

謝謝,package.json文件中有個錯誤 – navy1978

+0

我已將'devDependencies'切換到'dependencies',它似乎正在工作! –

0

對我來說,它是如何工作的問題是,模塊的依賴性是在「devDependencies」中的package.json上市

將它們移動到「依賴關係」並再次運行npm install解決了問題。