electron入门学习文档.ppt
《electron入门学习文档.ppt》由会员分享,可在线阅读,更多相关《electron入门学习文档.ppt(14页珍藏版)》请在三一办公上搜索。
1、electron,环境安装,第一步安装Node.js然后使用NPM全局安装electronnpm i electron-g,Quick start,项目大致的文件结构如右图所示package.json是node项目的配置文件main.js是electron的入口index.html就是应用的文件,package.json name:your-app,/应用名称 version:0.1.0,/版本号 main:main.js/electron的入口文件,const app,BrowserWindow=require(electron)let winfunction createWindow()w
2、in=new BrowserWindow(width:800,height:600)/Create the browser window.win.loadURL(file:/$_dirname/html/login.html)/and load the index.html of the app.win.webContents.openDevTools()/Open the DevTools.win.on(closed,()=win=null)app.on(ready,createWindow),app.on(window-all-closed,()=/On macOS it is commo
3、n for applications and their menu bar/to stay active until the user quits explicitly with Cmd+Q if(process.platform!=darwin)app.quit()app.on(activate,()=/On macOS its common to re-create a window in the app when the/dock icon is clicked and there are no other windows open.if(win=null)createWindow(),
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- electron 入门 学习 文档
链接地址:https://www.31ppt.com/p-5428805.html