I'm new to electron(node.js) desktop application. I'm trying to find a way open word application(which is already available in that particular pc or mac) inside the electron desktop application browser-window. Any help is much appreciated.
I'm new to electron(node.js) desktop application. I'm trying to find a way open word application(which is already available in that particular pc or mac) inside the electron desktop application browser-window. Any help is much appreciated.
Share Improve this question edited May 23, 2016 at 18:20 Deduplicator 45.8k7 gold badges72 silver badges123 bronze badges asked May 23, 2016 at 13:46 Hariprasath RameshkumarHariprasath Rameshkumar 231 silver badge4 bronze badges1 Answer
Reset to default 6You can use shell.openItem()
to open a Word file in Word (assuming Word is the default application for that file extension). Failing that you can always fall back to launching any application you want via Node's child process API.