New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fast-redux

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-redux

DRY version of Redux with O(1) speed and dynamic actions/reducers importing.

  • 0.7.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
587
decreased by-28.33%
Maintainers
1
Weekly downloads
 
Created
Source

fast-redux - O(1) speed and dynamic importing of actions/reducers

Fully compatible with Redux but works with O(1) speed when Redux itself works with O(N) speed (N is number of reducers). You can use standard Redux devtools with fast-redux actions.

When you dispatch an action, Redux invokes all reducers and passes the state and the action to each reducer. Usually it's not a problem but in complex applications when you have hundreds of reducers and will dispatch an action for every onChange of an input field in a form, you may observe performance issues. fast-redux solves this problem by using actions bound directly to reducers. Using this approach, for every action is executed exactly one reducer and you don't need to use constants for action types to match actions with reducers. You may see such fast-redux actions using well-known Redux DevTools and use its time traveling capabilities. More about performance issues that fast-redux aims to solve.

Plays well with code splitting. You can dynamically import actions/reducers to the store during lifetime of the applications.

Don't repeat yourself. Constants for action types aren't need (say goodbye to switch statements as well).

Installation

To install the stable version:

npm install --save fast-redux

The Redux source code is written in ES2015 but we precompile both CommonJS and UMD builds to ES5 so they work in any modern browser.

You can use fast-redux together with React, or with any other view library.
It is tiny (1kB, including dependencies).

fast-redux is simpler and IMO better version of Edux (my first attempt to make Redux more developer friendly).

Example

// reducers.js

export const DEFAULT_STATE = 'reactjs'

export function selectReddit (state, reddit) {
  return reddit
}


// actions.js

import { namespaceConfig } from 'fast-redux'
import * as reducers from '../reducers/selectedReddit'

const { action, getState: getSelectedReddit } = namespaceConfig(
  'selectedReddit', reducers.DEFAULT_STATE)

export { getSelectedReddit }
export const selectReddit = action(reducers.selectReddit)

Please look at examples directory for more complex use cases.

License

MIT

Keywords

FAQs

Package last updated on 11 Jan 2018

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