Gathering detailed insights and metrics for fusion-plugin-rpc-redux
Gathering detailed insights and metrics for fusion-plugin-rpc-redux
Gathering detailed insights and metrics for fusion-plugin-rpc-redux
Gathering detailed insights and metrics for fusion-plugin-rpc-redux
npm install fusion-plugin-rpc-redux
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (96.4%)
Shell (2.94%)
Dockerfile (0.66%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
4 Stars
131 Commits
20 Forks
5 Watchers
8 Branches
16 Contributors
Updated on Jan 28, 2023
Latest Version
0.1.8
Package Id
fusion-plugin-rpc-redux@0.1.8
Size
5.53 kB
NPM Version
3.10.10
Node Version
8.9.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
A collection of helper functions for working with Redux and RPC together
If using RPC from React components, you should use fusion-plugin-rpc-redux-react
instead of this package.
1yarn add fusion-plugin-rpc-redux
createRPCActions
1const {start, success, failure} = createRPCActions('foo'); 2start('payload') // { type: 'FOO_START', payload: 'payload' } 3success('payload') // { type: 'FOO_SUCCESS', payload: 'payload' } 4failure('payload') // { type: 'FOO_FAILURE', payload: 'payload' }
createRPCReducer
1const reducer = createRPCReducer('foo', { 2 start: (state, action) => {}, // optional, 3 success: (state, action) => {}, // optional, 4 failure: (state, action) => {}, // optional, 5});
createRPCReactor
1const {reactors, rpcId} = createRPCReactor('foo', { 2 start: (state, action) => {}, // optional, 3 success: (state, action) => {}, // optional, 4 failure: (state, action) => {}, // optional, 5});
createRPCHandler
1const handler = createRPCHandler({ 2 store, // required 3 rpc, // required 4 rpcId, // required 5 actions: { // optional 6 start: () => ({type: '', payload: ''}) 7 success: () => ({type: '', payload: ''}) 8 failure: () => ({type: '', payload: ''}) 9 }, 10 mapStateToParams: (state) => {}, // optional 11 transformParams: (params) => {} // optional 12}); 13await handler({some:'args'});
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 11/19 approved changesets -- score normalized to 5
Reason
project is archived
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
73 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