I'm looking to automate a process i already have working with the Eltima Serial Port Monitor. I have a piece of hardware with its proprietary software, which shows me data it receives over serial, but will not allow any datalog natively. I use the serial port monitor to sniff the communication, then filter down just the data i need, then process the text file output until i get what i want. My question regards node-serialport or socket.io or similar in order to sniff an already open port? I know i could open the port using those, but for starters, i'd prefer to just piggyback something on the existing connection, and simply skim the information i require without delving into the specifics of how the provided windows app talks to the hardware.
I apologize if the question seems elaborate, but i'm just looking to be pointed in the direction of something which is known to work, not to be given a complete solution. I don't have a lot of time to devote to this, and would rather not have to learn a framework just to find out it simply doesn't do the thing i wanted to use it for. Can someone please confirm whether a node solution can listen in on an already active port?