Gathering detailed insights and metrics for arbor-react
Gathering detailed insights and metrics for arbor-react
Gathering detailed insights and metrics for arbor-react
Gathering detailed insights and metrics for arbor-react
@arborjs/react
A fully typed, minimalistic proxy-based state tree library with very little boilerplate for React apps.
react-arborist
@catchandrelease/arbor
React component library for Catch&Release
josephcon1998-react-arbor

npm install arbor-react
Typescript
Module System
67.2
Supply Chain
73.2
Quality
75.4
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
2,932
Last Day
1
Last Week
2
Last Month
14
Last Year
192
1 Stars
21 Commits
1 Watchers
1 Branches
1 Contributors
Updated on May 09, 2018
Minified
Minified + Gzipped
Latest Version
0.1.0
Package Id
arbor-react@0.1.0
Unpacked Size
29.65 kB
Size
13.24 kB
File Count
7
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
0%
2
Compared to previous week
Last Month
-57.6%
14
Compared to previous month
Last Year
-56%
192
Compared to previous year
1
26
Connects a React component to an Arbor store.
A simple Counter APP...
1import React from "react" 2import Store from "arbor-store" 3import connect from "arbor-react" 4 5const CounterApp = ({ counter }) => { 6 return ( 7 <div> 8 <span>{counter.count}</span> 9 <button onClick={() => counter.count++} /> 10 </div> 11 ) 12} 13 14const store = new Store({ 15 counter: { 16 count: 0, 17 } 18}) 19 20export default connect(store)(CounterApp)
Once an Arbor Store is connected to your React component, the store's state is passed via props to the connected component. Regular JS mutations can be applied to any non-primitive prop, under the hoods, Arbor uses proxies to ensure these mutations do not happen in-place and rather, in an immutable fashion through structural sharing, allowing React to re-render the UI in an optimal way. This process behavior is very similar to Redux reducers.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no SAST tool detected
Details
Reason
Found 0/21 approved changesets -- score normalized to 0
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
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
117 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-03-10
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