Socket
Socket
Sign inDemoInstall

redux-reducer-timer

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    redux-reducer-timer

Timer middleware for printing out the time it takes to run your stuff


Version published
Weekly downloads
301
decreased by-3.53%
Maintainers
1
Install size
1.28 kB
Created
Weekly downloads
 

Readme

Source

Redux Reducer Timer

Time your redux reducers

Install

npm i --save redux-reducer-timer

Quick start

var createTimer = require('redux-reducer-timer')
var { createStore, applyMiddleware } = require('redux')
var reducers = require('./path/to/reducers.js')

var store = createStore(
  reducers,
  applyMiddleware(
    createTimer({predicate: () => true}), // Put timer before any middleware you want to include in the timing
    /* other middleware goes here */
  )
)

module.exports = store

Keywords

FAQs

Last updated on 04 Jan 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc