i've installed the latest (complete) version of netbeans (v 8.1) and node.js to learn node.js (Javascript) on my Windows 7 machine.
I created a new Node.js Application Project but I get errormessages when i write template strings like this:
console.log(`STDIN Data Recieved -> ${data.toString().trim()}`);
It says that the backtick was unexpected and it would be an error. The Syntax highlighting fails then in the whole function.
Is there anything i can do?