🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] [https://electronjs.org/docs/api/shell](https://electronjs.org/docs/api/shell) 使用默认应用程序管理文件和 url ## 案例 ### 用默认浏览器打开url ``` const { shell } = require('electron') shell.openExternal('https://github.com') ```