Is it possible to call a function in nodewebkit from an external application?
For example. I would like to decide whether the window is hidden or show through a external application or with applescript.
Is it possible to call a function in nodewebkit from an external application?
For example. I would like to decide whether the window is hidden or show through a external application or with applescript.
I'm not familiarized with the applescript language, but is possible between languages that have an implemented library for
socket.io
Using
socket.io
you can behave between applications,socket.io
act like an node.jsEventEmitter
(or pubsub), clients can send events and suscribe to those events in real-time.For your case you can create a socket.io server with
node.js
And add a socket.io client to your node-webkit application
And for this example I will assume that another javascript application will control the "show" and "hide" operations