webview_deno::globe_with_meridians:用于Webview的Deno绑定这是一个用于创建基于Web的桌面GUI的小型库 源码

eject75248 26 0 ZIP 2021-04-04 16:04:04

webview_deno 绑定使用库。 Webview是一个很小的跨平台库,用于为桌面应用程序呈现基于Web的GUI 。 :warning:该项目仍在开发中。期待重大变化。 例子 import { Webview } from "https://deno.land/x/webview/mod.ts" ; const html = ` <html> <body> Hello from deno v ${ Deno . version . deno } </body> </html> ` ; const webview = new Webview ( { url : `data:text/html, ${ encodeURIComponent ( html ) } ` } , ) ; await webview . run ( ) ; 您可以直接从网络运行

用户评论
请输入评论内容
评分:
暂无评论