Launch a fresh safari on OSX.
const safari = require('osx-safari')
safari({ uri: 'https://github.com/' }, (err, ps) => {
if (err) throw err
ps.on('error', console.error)
})
$ npm install osx-safari
Options:
display: Sets DISPLAY=:${opts.display} for xvfb supporturi: The uri to openMIT