React Native Expo - Node.js version 11.13.0 is no longer supported
nvm install node --reinstall-packages-from=$(nvm current)
if you're not using nvm :
sudo npm install -g n
sudo n latest
Just Download the latest NodeJs Version and Install them.
link -: https://nodejs.org/en/download/
currently latest version 14.16.0. Expo works fine with this version.
I had this issue because brew was linked to node
and nvm
was not the only package manager.
brew unlink node
.
Did you install the nvm
?
nvm document Github
If you did not install the nvm
,
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.4/install.sh | bash
And
Note: If the environment variable
$XDG_CONFIG_HOME
is present, it will place thenvm
files there
export NVM_DIR="/Users/Chris/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
And
nvm install node
And
node --version