Gathering detailed insights and metrics for redux-promise-middleware-global-action
Gathering detailed insights and metrics for redux-promise-middleware-global-action
Gathering detailed insights and metrics for redux-promise-middleware-global-action
Gathering detailed insights and metrics for redux-promise-middleware-global-action
Enables simple, yet robust handling of async action creators in Redux
npm install redux-promise-middleware-global-action
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
1,980 Stars
384 Commits
186 Forks
16 Watchers
2 Branches
46 Contributors
Updated on Jun 10, 2025
Latest Version
5.0.1
Package Id
redux-promise-middleware-global-action@5.0.1
Unpacked Size
814.75 kB
Size
176.67 kB
File Count
11
NPM Version
5.3.0
Node Version
8.4.0
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
1
39
Redux promise middleware enables robust handling of async action creators in Redux: it accepts a promise and dispatches pending, fulfilled and rejected actions.
1const promiseAction = () => ({ 2 type: 'PROMISE', 3 payload: Promise.resolve(), 4})
The middleware can also be combined with Redux Thunk to chain action creators.
1const secondAction = (data) => ({ 2 type: 'TWO', 3 payload: data, 4}) 5 6const first = () => { 7 return (dispatch) => { 8 const response = dispatch({ 9 type: 'ONE', 10 payload: Promise.resolve(), 11 }) 12 13 response.then((data) => { 14 dispatch(secondAction(data)) 15 }) 16 } 17}
Older versions:
Please reach out to us if you have any questions!
Copyright (c) 2015-Current Patrick Burtchaell. Code licensed with the MIT License (MIT). Documentation licensed with the CC BY-NC License.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 11/22 approved changesets -- score normalized to 5
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
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
94 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