Leonard HABIMANA
Leonard HABIMANA

Reputation: 37

i have a problem trying to install babel into my node.js project

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

Answers (1)

Sudhakar Ramasamy
Sudhakar Ramasamy

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

Related Questions