Thanks to @ladar for helping me, I found out that the culprit really was hi: printed by any cordova command (for example, cordova --version or cordova --help ). I do not know why this originally existed, since I installed the cord using npm install -g cordova and even after npm install -g cordova , the output was always the same.
So, I was looking for a Cordova executed with
which cordova
and around line 20:
// Set this to 1 to enable timestamp collection via addTs(). console.log('hello: '); if (0) { var ts = [];
Adding // in front of console.log finally made Netbeans work!
Thanks again @ladar for your suggestions
source share