📜  nodejs 在特定网页上打开默认浏览器 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:12.051000             🧑  作者: Mango

代码示例1
$ npm install opn

//////////////////////////////////////////

var opn = require('opn');

// opens the url in the default browser 
opn('http://sindresorhus.com');

// specify the app to open in 
opn('http://sindresorhus.com', {app: 'firefox'});