Home > Software design >  Invalid regular expression npm start
Invalid regular expression npm start

Time:07-16

  1. i download react wearable from https://github.com/yldio/react-native-wearables-demo#using-android-studios-adb

  2. npm install(no error)

  3. npm start --reset cache than error - Invalid regular expression: /(.\fixtures\.|node_modules[\]react[\]dist[\].|website\node_modules\.|heapCapture\bundle.js|.\tests\.)$/: Unterminated character class

enter image description here

CodePudding user response:

Use npx and try

npx react-native start --reset-cache
  • Related