8

Like the title say, I keep on getting this weird error. I also tried uninstalling it by using npm uninstall xml2js but nothing has worked until now.

enter image description here

BrianM
  • 951
  • 2
  • 12
  • 29

1 Answers1

17

Fixed this by doing npm install events buffer stream timers --save. But I think installing only timers should also work.

EDIT

It seems that streams and timers needed to be updated, and not events and buffers

BrianM
  • 951
  • 2
  • 12
  • 29
  • 4
    I needed both timers and stream but not events or buffer. – efarley May 14 '18 at 21:43
  • Yes, only stream and timers are needed, not events and buffer. – Atif Saddique Aug 31 '18 at 09:12
  • @BrianM I was just tempted to do it, but it might be worth updating this answer to just note that `npm install stream timers --save` is the only thing that's necessary, based upon the comments and what I just experienced. – James Skemp Dec 31 '18 at 21:40