Reputation: 445
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
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