I have a prototype ready to go and the project is jammed with build:
error: Can\'t find \'node\' binary to build React Native bundle If you have non
The solution for me is to set a default version of node with nvm in your profile. This works for bash or zsh:
node
nvm
Add this to your .zshrc or .bashrc
.zshrc
.bashrc
# default node version for nvm nvm use 8.9.3
Be sure to change it to the version you want when starting a new terminal.