Is it possible for Node.js running on a desktop to spawn a Chrome Browser window? I would like to start a Chrome Browser providing the window size and location when Node.js rece
With opn:
const opn = require('opn'); opn('http://siteurl.com/', {app: ['google chrome']});