4

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

bot.on("message", msg => {
 // Content
});
swagster
  • 165
  • 2
  • 10

1 Answers1

4

the arrow function => are ES6 functions, which you can't use with ES5 which was the default for node under 4.4.5 version. On windows you must have installed the latest version of node, which supports that type of functions

Satpal Tanan
  • 1,108
  • 7
  • 17