I have a desktop application, packaged using node-webkit. I need to open the default browser of the user on click of a link. I am using
window.open(\"www.google
To open a link in the user's default browser, you could use gui.Shell.openExternal("http://website.com"). Checkout the documentation for gui.Shell.
gui.Shell.openExternal("http://website.com")