This is weird.
Forgetting previous stuff here is the problem I now am seeing/have.
This code:
counter = counter + 1;
context.set("COUNTER",counter);
node.warn("TOTAL is " + total);
total = total + x;
node.warn("TOTAL IS NOW " + total);
context.set("total",total);
msg.payload = total;
return msg;
This is what I see - given I reset the flow at the start. (Sorry it scrolled off the top of the screen)
NR 2.0.1
It starts at 0 and each time I press the 8 it increments by 8.
On the OTHER machine....
This is what I'm getting:
NR 1.2.6
The maths isn't being honoured.
It would seem that it is being parsed as text.... and the new messages appended to the previous message instead of being added.


