Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

npm ERR! peer react@"15.3.0 - 16.x" from react-vis@1.11.7 with NPM 7 or above install #1435

Open
Chen-BBe opened this issue Oct 28, 2021 · 10 comments

Comments

@Chen-BBe
Copy link

Chen-BBe commented Oct 28, 2021

Please update & test to latest react version, although it can be ignored by -- force with NPM or downgrade to NPM 6*, but a bit annoying to see it print out in my console.
peer react@"15.3.0 - 16.x" from react-vis@1.11.7

The complete error below:

npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: react_ui@0.1.0 // this my project name, ignore it.
npm ERR! Found: react@17.0.2
npm ERR! node_modules/react
npm ERR! react@"^17.0.2" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"15.3.0 - 16.x" from react-vis@1.11.7 // does not work with NPM 7, unless --force
npm ERR! node_modules/react-vis
npm ERR! react-vis@"^1.11.7" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See C:\Users\Steven.bi\AppData\Local\npm-cache\eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Steven.bi\AppData\Local\npm-cache_logs\2021-10-28T02_42_43_485Z-debug.log

@kiernan
Copy link

kiernan commented May 23, 2022

Same thing still occurring in 2022.

@guguji5
Copy link

guguji5 commented Jun 21, 2022

+1

@VanjaVizi
Copy link

+1

@JustinB-AB
Copy link

JustinB-AB commented Oct 29, 2022

+1

npm ERR! Found: react@18.2.0
npm ERR! node_modules/react
npm ERR! react@"^18.2.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"15.3.0 - 16.x" from react-vis@1.11.7
npm ERR! node_modules/react-vis
npm ERR! react-vis@"*" from the root project

@McleanWorkshield
Copy link

+1

Is this something that plans on getting fixed?

@JustinB-AB
Copy link

@McleanWorkshield I noticed after posting my comment that the last update was a Deprecated notice, as the library is without maintainers. I decided to go with a graph library called Victory for react myself.

@McleanWorkshield
Copy link

@Digichain Thanks! After posting I saw the date last published and started to assume the worst. Looks like a new refactor project coming my way.

I'll check out Victory!

@babay123
Copy link

babay123 commented Nov 14, 2022

You can overwrite react version for react-vis adding this in package.json

 "overrides": { 
    "react-vis": {
      "react": "^17.0.2"
    }
  }

Example:

{
  "dependencies": {
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-vis": "^1.11.7"
  },
  "overrides": {
    "react-vis": {
      "react": "^17.0.2",
      "react-dom": "^17.0.2"
    }
  }
}

@McleanWorkshield
Copy link

@babay123 -- Much appreciated!!

@josephecombs
Copy link

I also needed to override react-dom:

  "overrides": {
    "react-vis": {
      "react": "^17.0.2",
      "react": "^17.0.2"
    }
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants