Reputation: 37
i am trying to run this command
npm install --save-dev babel-cli babel-preset-env babel-watch
and i am getting the following error
npm ERR! code Z_BUF_ERROR npm ERR! errno -5 npm ERR! zlib: unexpected end of file
any help please or any other way i can use to install babel
Upvotes: 1
Views: 67
Reputation: 1759
Try executing this (Clean Cache)
npm cache clean --force
before
npm install --save-dev babel-cli babel-preset-env babel-watch
Upvotes: 1