Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@bentatum/react-router-redux

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bentatum/react-router-redux

Synchronize React Router with your Redux store

  • 5.0.0-beta.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

react-router-redux npm package npm downloads Travis

Keep React Router in sync with Redux

Installation

Using npm:

npm install --save react-router-redux

A UMD build is also available on unpkg:

<script src="https://unpkg.com/react-router-redux/umd/react-router-redux.min.js"></script>

Usage

Let's take a look at a simple example.

import React from 'react'
import ReactDOM from 'react-dom'
import { createStore, combineReducers } from 'redux'
import { Provider } from 'react-redux'
import { Match } from 'react-router'
import { ConnectedRouter, routerReducer } from 'react-router-redux'

import reducers from '<project-path>/reducers'
import App from '<project-path>/components/App'

// Add the reducer to your store on the `router` key
const store = createStore(
  combineReducers({
    ...reducers,
    router: routerReducer
  })
)

ReactDOM.render(
  <Provider store={store}>
    { /* Use the ConnectedRouter inside of Provider */ }
    <ConnectedRouter>
      <Match pattern="/" component={App}/>
    </ConnectedRouter>
  </Provider>,
  document.getElementById('root')
)

The location will automatically be synced with state.router.location. You can also access the last action type with state.router.action.

TODOs

  • Action creators to issue navigation events (dispatch(push('/foo')))
  • More and better tests

Thanks and Acknowledgments

  • James Long - For creating the initial versions of this library and being a good open source steward.
  • Jimmy Jia - For the majority of the work on 3.0, which inspires the continuing simplicity of this library.

Keywords

FAQs

Package last updated on 16 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc