react-native-ultimate-config icon indicating copy to clipboard operation
react-native-ultimate-config copied to clipboard

Doc/Quickstart (minor): `npm bin` deprecated in Node 18.14

Open esalaza opened this issue 1 year ago • 1 comments

Hi. This is just a minor documentation issue.

Step 4 in docs/quickstart.md instructs to do:

"rnuc": "$(npm bin)/rnuc"

But npm bin has been removed in Node 18.14. It could be updated to:

"rnuc": "$(npm bin)/rnuc"

If you are on Node < 18.14, or:

npx rnuc

If you are on Node >= 18.14.

Steps to Reproduce

nvm i v18.16.0
nvm use v18.16.0
npm run rnuc .env
sh: Unknown: command not found

Thank you!

esalaza avatar May 24 '23 04:05 esalaza

Hi. This is just a minor documentation issue.

Step 4 in docs/quickstart.md instructs to do:

"rnuc": "$(npm bin)/rnuc"

But npm bin has been removed in Node 18.14. It could be updated to:

"rnuc": "$(npm bin)/rnuc"

If you are on Node < 18.14, or:

npx rnuc

If you are on Node >= 18.14.

Steps to Reproduce

nvm i v18.16.0
nvm use v18.16.0
npm run rnuc .env
sh: Unknown: command not found

Thank you!

Thank you, this solve the issue with node v18.17.1

luca-tomasetti avatar Oct 06 '23 07:10 luca-tomasetti