I am trying to install realm in a fresh react-native project. but when I run this command yarn add realm or npm I realm it always stop on this step.
[4/4] 🔨 Building fresh packages…[1/1] â „ realm
and nothing is happening. I have tried many version to install but same issue,
2
Answers
For node 19, you can try this
npm install –save [email protected]
Please check for compatibility with you node and react native version: https://github.com/realm/realm-js/blob/master/COMPATIBILITY.md
As @engr-aftab-ufaq said, installing
nvm
and then using the latest LTS version (v18.14.0 as I’m writing), then re-runningnpm install realm
, fixed the problem for me