📑

M1で"npm start"が上手くできなかった話

2022/03/21に公開

【問題】 M1で"npm start"が上手くできなかった。

とりあえずいつも通り"npm start"でReact.jsを動かそうとしたら、謎の大量のエラーがでた。

#
# Fatal error in , line 0
# Check failed: allocator->SetPermissions(reinterpret_cast<void*>(region.begin()), region.size(), PageAllocator::kNoAccess).
#
#
#
#FailureMessage Object:
 1:...
 2:...
 3:...
 4:...

【解決策】 nodeのバージョンを15.9.0以上にする

nodeのバージョンを15.9.0にしたところ動いた。

参考資料

https://zenn.dev/mackay/articles/7af6e3c7fd094b

M1固有の問題らしい?

エラーの内容を検索するとM1の記事が沢山出てくるので、おそらくM1固有の問題らしい
https://zenn.dev/catnose99/scraps/6c9e7ebabb6221

Discussion