JSPM can't find a react-redux version that matches react@^15.4.0
See original GitHub issueWhen I try to install react-redux using jspm I get the following message:
Installing npm:react-redux@4.4.6, no version match for npm:react@^15.4.0
However, looking into the package.json, it seems to be correct.
"react": "^0.14.0 || ^15.0.0-0 || ^15.4.0-0",
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
react-redux - npm
Official React bindings for Redux. Latest version: 8.0.5, last published: 2 months ago. Start using react-redux in your project by running ...
Read more >reactjs - Module not found: 'redux' - Stack Overflow
I ran yarn add redux@3.7.2 (with the VSC terminal) to re-install the package. Note that i had the exact version within my package.json...
Read more >How To Manage State in React with Redux - DigitalOcean
You will need a development environment running Node.js; this tutorial was tested on Node.js version 10.22.0 and npm version 6.14.6. To install ...
Read more >Higher-Order Components - React
A higher-order component (HOC) is an advanced technique in React for reusing component logic. HOCs are not part of the React API, per...
Read more >React + Redux - User Registration and Login Tutorial & Example
16 Sep 2017 - Built tutorial with React 15.4.2 and Webpack 2.2 - The code for this version of the react tutorial is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ah ha! I was right! 😄
Thanks for the follow up, @JoaoMosmann
The problem was that the version 0.16.* of jspm doesn’t support
||
in dependencies version.With the jspm@0.17.0-beta4 I was able to overwrite the peerDependencies.
Issue created on jspm repo: jspm/jspm-cli#2173