Launch a fresh Firefox on Linux.
const firefox = require('linux-firefox')
firefox({ uri: 'https://github.com/' }, (err, ps) => {
if (err) throw err
ps.on('error', console.error)
})
$ npm install linux-firefox
Firefox needs to be installed on your system as well.
Options:
display
: Launch Firefox on:${opts.display}
proxy
: Proxy server settingsnoProxy
: Proxy routes to skip
MIT