lo7
lo7

Reputation: 445

Error code 253 running npx react-native init on mac m1

Error appear when running this command: npx react-native init awesomeproject

npm version: 6.14.15

node version: v14.17.6

npm ERR! code Z_DATA_ERROR
npm ERR! errno -3
npm ERR! zlib: incorrect data check

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/name/.npm/_logs/2022-03-11T17_06_48_110Z-debug.log
Install for [ 'react-native@latest' ] failed with code 253

I can't find any solutions for this problem. Does anyone know how to fix this error?

Any help is appreciated! thanks in advance

Upvotes: 0

Views: 572

Answers (1)

Khurshid Jumaboev
Khurshid Jumaboev

Reputation: 65

Clear your cache

npm cache clean --force

And update your npm

npm install -g npm@latest

Also, install nvm and use the latest LTS version of node

Upvotes: 1

Related Questions