Gathering detailed insights and metrics for redux-actions
Gathering detailed insights and metrics for redux-actions
Gathering detailed insights and metrics for redux-actions
Gathering detailed insights and metrics for redux-actions
@types/redux-actions
TypeScript definitions for redux-actions
typesafe-actions
Typesafe Action Creators for Redux / Flux Architectures (in TypeScript)
redux-batched-actions
redux higher order reducer + action creator to reduce actions under a single subscriber notification
redux-actions-helper
> helper for redux-actions
npm install redux-actions
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
6,495 Stars
234 Commits
296 Forks
62 Watchers
9 Branches
66 Contributors
Updated on Jul 07, 2025
Latest Version
3.0.3
Package Id
redux-actions@3.0.3
Unpacked Size
12.18 kB
Size
5.00 kB
File Count
4
NPM Version
10.7.0
Node Version
20.15.1
Published on
Jul 21, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Flux Standard Action utilities for Redux
1$ npm install --save redux-actions
or
1$ yarn add redux-actions
The npm package provides ES modules that should be compatible with every modern build tooling.
1import { createActions, handleActions, combineActions } from 'redux-actions'; 2 3const defaultState = { counter: 10 }; 4 5const { increment, decrement } = createActions({ 6 INCREMENT: (amount = 1) => ({ amount }), 7 DECREMENT: (amount = 1) => ({ amount: -amount }) 8}); 9 10const reducer = handleActions( 11 { 12 [combineActions(increment, decrement)]: ( 13 state, 14 { payload: { amount } } 15 ) => { 16 return { ...state, counter: state.counter + amount }; 17 } 18 }, 19 defaultState 20); 21 22export default reducer;
See the full API documentation.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 13/30 approved changesets -- score normalized to 4
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
14 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More