With the recent release of macOS Sierra, running react-native init app hangs until the process is exited. After spending some time diagnosing the issue, I narrowed it down to watchman hanging. To verify, run watchman version.

To fix the issue, you need to delete watchman and reinstall it:

1
rm -rf /usr/local/var/run/watchman/ && brew uninstall watchman && brew install watchman