Here's the error message got in the terminal when running it: `(node:62823) [DEP0025] DeprecationWarning: sys is deprecated. Use util instead.` Replacing `sys = require('sys')` by `sys = require('util')` seems to work perfectly.
Here's the error message got in the terminal when running it:
(node:62823) [DEP0025] DeprecationWarning: sys is deprecated. Use util instead.Replacing
sys = require('sys')bysys = require('util')seems to work perfectly.