@msimon360 if the modules provide multi instance support (pretty easy) then you don’t have to do the copying
on the sendSocketNotification from module to node_helper, send some unique key, typically this.identifier will work
when the node helper sends the response, it add the id it received…
And
the module in
socketNotificationReceived, check the ID against its value… if no match, ignore it
sendSocketNotification from the helper goes to ALL instances of the module at the SAME TIME
so it will have to check if the data is intended for its instance ID
generally a couple lines of code in the helper and in the module
sometimes, really modularized node_helpers need to pass if from request to response functions… (one of mine is like that)