有没有关于移植我已经完成的angular2应用程序以及大量路由器组件和服务的新教程?我一直在努力工作20个小时,随处可见。请帮我一把。旧的tutrorials已经弃用或者不包含路由器。我尝试使用流行的教程 https://auth0.com/blog/angular-2-series-part-4-component-router-in-depth/ 和 http://tphangout.com/angular-2-desktop-apps-with-electron/
但这些并没有帮助我。还有其他想法吗?答案 0 :(得分:0)
您需要低于https://github.com/electron/electron/tree/master/default_app
electron.js
const electron = require('electron-prebuilt'),
proc = require('child_process'),
child = proc.spawn(electron, ['.']
main.js
- https://github.com/electron/electron/blob/master/default_app/main.js
const electron = require("electron"),
app = electron.app;
app.on("ready", function(){
mainWindow = new BrowserWindow({
autoHideMenuBar: false,
width: 1024,
height: 768,
});
mainWindow.loadURL('file://'+__dirname+'/index.html'););
}
您还可以使用https://github.com/theallmightyjohnmanning/electron-express
托管nodejs服务器教程: http://electron.rocks/electron-angular-creating-sample-application/