Using Private Packages in Expo

created
2024-11-12
modified
2026-02-20
words
~39
reading
~1 min

Don’t waste four hours like I did 😭. If you're using a private package off of an NPM paid account, you need to specify the registry value in your .npmrc. The generated one won't work.

//registry.npmjs.org/:_authToken=${NPM_TOKEN}
registry=https://registry.npmjs.org/

The more ya know.