📜  npm install redux 和 react-redux - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:44:46.505000             🧑  作者: Mango

NPM安装redux和react-redux

简介

React是目前非常热门的JavaScript库。而Redux是一个用于JavaScript应用程序的可预测状态容器。React-Redux是Redux绑定React的官方库。它让我们能够更好地管理Redux中的状态,并将其传递到React组件中。

本文将介绍如何使用npm安装Redux和React-Redux。

步骤
安装Redux

在命令行中运行以下命令:

npm install redux

这将安装最新版本的Redux。

安装React-Redux

在命令行中运行以下命令:

npm install react-redux

这将安装最新版本的React-Redux。

使用Redux和React-Redux

在您的React项目中,请确保引入并使用Redux和React-Redux:

import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import { createStore } from 'redux';

// Reducer
const reducer = (state = { count: 0 }, action) => {
  switch (action.type) {
    case 'INCREMENT':
      return { count: state.count + 1 };
    case 'DECREMENT':
      return { count: state.count - 1 };
    default:
      return state;
  }
}

// Store
const store = createStore(reducer);

// Components
const Counter = ({ count, increment, decrement }) => (
  <div>
    <h1>{count}</h1>
    <button onClick={increment}>+</button>
    <button onClick={decrement}>-</button>
  </div>
);

// Actions
const incrementAction = { type: 'INCREMENT' };
const decrementAction = { type: 'DECREMENT' };

// Map Redux state to component props
const mapStateToProps = state => ({
  count: state.count
});

// Map Redux actions to component props
const mapDispatchToProps = dispatch => ({
  increment: () => dispatch(incrementAction),
  decrement: () => dispatch(decrementAction)
});

// Connect component to Redux store
const ConnectedCounter = connect(
  mapStateToProps,
  mapDispatchToProps
)(Counter);

// Render app
ReactDOM.render(
  <Provider store={store}>
    <ConnectedCounter />
  </Provider>,
  document.getElementById('root')
);
结论

在React应用程序中使用Redux和React-Redux可以帮助我们更好地管理应用程序状态,并将其传递到组件中。使用npm可以轻松安装这些库,并在您的项目中使用它们。这是一个非常流行的技术,它可以提高代码的可读性和可维护性。