1. ホーム
  2. reactjs

[解決済み] モジュールが見つかりません: 'redux'

2023-04-22 16:40:42

質問

私は、新しいreactアプリケーションを create-react-app cliを使用して新しいreactアプリケーションを作成しました。 そして 'react-redux' を使ってライブラリを追加しました。 npm install --save react-redux .

package.json を持っています。

"react-redux": "^4.4.5"

残念ながら、アプリはコンパイルされず、次のように文句を言われます。

Error in ./~/react-redux/lib/utils/wrapActionCreators.js
Module not found: 'redux' in C:\Users\Salman\Desktop\Courses\Internship\React\Youtube-Front-End\node_modules\react-redux\lib\utils

 @ ./~/react-redux/lib/utils/wrapActionCreators.js 6:13-29

どういう意味なのか、さっぱりわからないのですが?

コンテナの完成形はこちらです。

import React,{Component} from 'react';
import {connect} from 'react-redux';

class BookList extends Component{
  renderList(){
        return this.props.books.map((book)=>{
          <li key={book.title} >{book.title}</li>
        });
    }

  render(){

    return(
      <div>
        <ul>
          {this.renderList()}
        </ul>
      </div>
    );
  }
}

function mapStateToProps(state){
  return{
    books:state.books
  };
}

export default connect(mapStateToProps)(BookList);

以下は、完全な package.json :

{
  "name": "Youtube-Front-End",
  "version": "0.1.0",
  "private": true,
  "devDependencies": {
    "react-scripts": "0.6.1",
    "webpack": "^1.13.2"
  },
  "dependencies": {
    "react": "^15.3.2",
    "react-dom": "^15.3.2",
    "react-redux": "^4.4.5",
    "youtube-api-search": "0.0.5"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --env=jsdom",
    "eject": "react-scripts eject"
  }
}

どのように解決するのですか?

react-reduxだけでなく、reduxライブラリもインストールする必要があります。

npm install --save redux