I have a React Native app that fails to build on both Android and iOS apps, (XCode, Android Studio, on a physical device). I have not changed anything inside package.json.
The error is being caused by a file (useReigsterNavigator.js) inside of the @react-navigation node_module:
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = useRegisterNavigator;
var _nonSecure = require("nanoid/non-secure");
This is the error message that comes up in the iOS simulator:
Unable to resolve module ../../../../nanoid/non-secure/index.cjs from /Users/username/Code/my-app/node_modules/@react-navigation/core/lib/commonjs/useRegisterNavigator.js:
None of these files exist:
* node_modules/nanoid/non-secure/index.cjs(.native|.ios.js|.native.js|.js|.ios.json|.native.json|.json|.ios.ts|.native.ts|.ts|.ios.tsx|.native.tsx|.tsx)
* node_modules/nanoid/non-secure/index.cjs/index(.native|.ios.js|.native.js|.js|.ios.json|.native.json|.json|.ios.ts|.native.ts|.ts|.ios.tsx|.native.tsx|.tsx)
> 1 | "use strict";
2 |
3 | Object.defineProperty(exports, "__esModule", {
4 | value: true
Why am I getting this error? The nanoid folder and the react-navigation folders exists in node_modules
.
screenshot of the nanoid folder inside node_modules
screenshot of the react-navigation folder inside node_modules
I've tried a few things that have not worked:
Added a resolver to the
metro.config.js
file that looks for 'cjs' source extensions:resolver: { sourceExts: [...sourceExts, 'cjs'], },
Have checked github issues of the following repos: nanoid, facebook metro, react-navigation to see there are no reported issues.
Deleted Pods folder and Podfile.lock and then re-installed pods with the command
pod install
.Cleaned the pod cache with the command
pod cache clean --all
Reset the React-native packager cache
npx react-native start --reset-cache
Deleted CocoaPods, Pods, XCode DerivedData, and have performed pod deintegration and then restarted everything with pod set up and pod install:
rm -rf ~/Library/Caches/CocoaPods; rm -rf Podsl; rm -rf ~/Library/Developer/Xcode/DerivedData/*; pod deintegrate; pod setup; pod install;
I was facing this issue while using
@react-navigation
withnx
monorepo and fixed by addingcjs
extension toresolver.sourceExts
property ofmetro.config.js
. This enables metro to read commonjsnanoid/non-secure/index.cjs
file.