Uncaught Error: Cannot add node "1" because a node with that id is already in the Store
I also had this problem, my dependencies:
...
"expo": "~43.0.0",
"react": "17.0.2",
"react-native": "0.66.3"
Seems like "react-devtools-core"
in react-native dependencies install old package version.
I added
"resolutions": {
"react-devtools-core": "4.14.0"
}
To package.json
for solving this problem.
I also reinstall last react-native-debugger ( brew reinstall react-native-debugger
)
Maybe it will help you.