I want to ask, how do I send a message as soon as I started the node script? (Do not wait for an answer)
//This is Not work:
connection._executeCommand("msg","Name","TestOfExecute");
// This work if we reseave message (do execute forever. Why not once?)
connection.on('message', message => {
connection._executeCommand("msg","Name","TestOfExecute");
});