would it be something like this? I would set the console to loopbackA and then call an on data listener for loopbackB and send that via ws?
loopbackA
LoopbackA.setConsole(); LoopbackB.on('data',function(msg){ ws.send(msg); });
@Esper started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
would it be something like this? I would set the console to
loopbackA
and then call an on data listener for loopbackB and send that via ws?