skip to Main Content

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


  1. 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

    Login or Signup to reply.
  2. As @engr-aftab-ufaq said, installing nvm and then using the latest LTS version (v18.14.0 as I’m writing), then re-running npm install realm, fixed the problem for me

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search