maraya Posted February 24, 2017 Report Posted February 24, 2017 every any transactions, send/receive trade.why i always get like this: Quote
SteveE Posted February 24, 2017 Report Posted February 24, 2017 it means you use a function, which will be remove in node.js in future version,when you won't update your node.js.it is not important Quote
Dr. McKay Posted February 25, 2017 Report Posted February 25, 2017 You're most likely using fs.writeFile('pollData.json', JSON.stringify(pollData)); inside of the pollData event. Node doesn't like it if you use writeFile without a callback anymore. All you need to do is change it to fs.writeFile('pollData.json', JSON.stringify(pollData), function() {}); Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.