Gathering detailed insights and metrics for redux-ey
Gathering detailed insights and metrics for redux-ey
Gathering detailed insights and metrics for redux-ey
Gathering detailed insights and metrics for redux-ey
npm install redux-ey
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
6 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Nov 28, 2018
Latest Version
1.1.2
Package Id
redux-ey@1.1.2
Unpacked Size
62.40 kB
Size
16.85 kB
File Count
6
NPM Version
6.4.1
Node Version
10.13.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
npm install redux-ey --save
1// store/test.model.js 2export default { 3 namespace: 'test', 4 state: { 5 a: 1, 6 b: 2 7 } 8}; 9 10 11// store/index.js 12import { combineReducers } from 'redux'; 13import ReduxEy from 'redux-ey'; 14import test from './test.model'; 15 16export default combineReducers({ 17 18 test: ReduxEy(test) 19 20}) 21 22// page/home.js 23import * as React from 'react'; 24import { connect } from 'react-redux'; 25 26@connect(({ test }) => ({ test })) 27class Home extends React.Component { 28 upthetest() { 29 let a = this.props.test.a; 30 a++; 31 this.props.dispatch({ type: 'test', payload: { a, b: 4 } }); 32 } 33 render() { 34 return ( 35 <div> 36 <span onClick={() => this.upthetest()}>{this.props.test.a}</span> 37 </div> 38 ); 39 } 40} 41export default Home;
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 0/6 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
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
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
37 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
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