Electron 如何调用外部浏览器打开链接地址

Electron 如何调用外部浏览器打开链接地址视频教程地址:https://www.itying.com/goods-929.html

Electron Shell模块可以让我们在自己的软件中调用外部浏览器打开链接地址


var shell = require('shell');

shell.openExternal('https://github.com');
	

回到顶部