Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

meteor 1.4 - (node) sys is deprecated. Use util instead

Tags:

node.js

meteor

Personally, I have a problem when running meteor ...

The app work perfectly but console show me exception

(node) sys is deprecated. Use util instead.

I have no idea of what might be ... need help ....

enter image description here

like image 937
obhakim Avatar asked Aug 12 '16 13:08

obhakim


Video Answer


1 Answers

Probably one or more of your packages is using require('sys') (which has been deprecated in Node 4.0.0), in this case you have to check which one are using it and update them.

If you find that you are using it in your own code, replace require('sys') with require('util')

like image 177
notme Avatar answered Oct 19 '22 02:10

notme