[React Native] M1 Mac で yarn react-native start するとエラーが発生する
November 27, 2021
M1 Mac で % yarn react-native start
すると「error Command failed with signal “SIGABRT”.」エラーが発生し、Metro Bundler が起動しませんでした。
# エラー発生時のログを抜粋
% yarn react-native start
...省略
<--- JS stacktrace --->
FATAL ERROR: wasm code commit Allocation failed - process out of memory
...省略
error Command failed with signal "SIGABRT".
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
エラー時の環境
- M1 Mac(arm64)
- node v14.16.0
- react-native v0.64.1
解決方法
こちら1を参考にし、node のバージョンを v14.18.1 にしたところ、エラーが解消できました。