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 receives an event.
Is sys shell commands only methodology?
|
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 receives an event. Is sys shell commands only methodology? |
|||||
|
This opens firefox in google page from a nodejs script, for chrome should be the same |
|||||||
|
|
I open a new firefox tab on windows here: https://github.com/Sequoia/FTWin/blob/master/FTWin.n.js The most salient portion:
Note:
This call is the equivalent of typing For chrome you'd want something like References: |
|||
|
|
|
Node can only do that if you call a UNIX / Windows command, so sys shell command only. |
|||
|
|
|
Yeah, I would think you would need to escape out to shell and then open up chrome. |
|||
|
|