tradle / rn-nodeify

hack to allow react-native projects to use node core modules, and npm modules that use them
MIT License
614 stars 114 forks source link

Specific Module Installation Fails with --hack Flag #136

Open Ham3798 opened 6 months ago

Ham3798 commented 6 months ago

Issue Description

I am encountering an issue with rn-nodeify where installing multiple modules at once using the --hack flag fails, but installing them individually works. Specifically, running rn-nodeify --install crypto os http https stream --hack does not work, while rn-nodeify --install os --hack works as expected.

Steps to Reproduce

  1. Run rn-nodeify --install crypto os http https stream --hack in the project directory.
  2. Observe that the installation process does not complete successfully.
  3. Run rn-nodeify --install os --hack in the same project directory.
  4. Notice that this individual module installation completes without issues.
mvayngrib commented 6 months ago

@Ham3798 does it fail on a specific module? could u post the error, and/or a link to a repro?