{ //...">

SyntaxError: Unexpected token => Nodejs

These scripts work on Windows 10 Nodejs, but not on Ubuntu Nodejs v0.12

bot.on("message", msg => {
 // Content
});
+4
source share
1 answer

arrow function => are ES6 functions that you cannot use with ES5, which was the default for node in version 4.4.5. On Windows, you must install the latest version of node that supports this type of function

+4
source

Source: https://habr.com/ru/post/1647992/


All Articles