DeskGap是一个使用现代Web技术(JavaScript,HTML,CSS)的跨平台桌面应用开发框架。
为了保证原生兼容性和压缩体积大小,DeskGap捆绑了一个Node.js运行时,并将HTML渲染的工作留给了系统的Webview。
受支持的平台
MacOSXYosemite(version10.10)或更高版本Windows10October2018Update(version1809)或更高版本Linuxx86_64withwebkit2gtkinstalled,testedon:Ubuntu18.04.2with libwebkit2gtk-4.0-372.22.6openSUSELeap15.0with libwebkit2gtk-4_0-372.20.2使用示例代码
为app创建一个Node.js包
hello-deskgap/├──package.json├──index.js└──index.htmlpackage.json指向应用程序的目录文件,并提供启动应用程序的脚本:
{"name":"hello-deskgap","main":"index.js","scripts":{"start":"deskgap."}}index.js会创建一个窗口用于渲染HTML页面:
const{app,BrowserWindow}=require('deskgap');app.once('ready',()=>{constwin=newBrowserWindow();win.loadFile('index.html');});index.html是被渲染的页面:
<!DOCTYPEhtml><html><head><metacharset="utf-8"/><title>HelloDeskGap</title></head><body><h1>HelloDeskGap</h1></body></html>
评论