Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@cosmograph/react
Advanced tools
@cosmograph/react
is a user-friendly library for integrating the @cosmograph/cosmograph
library into your React applications. It provides a collection of ready-to-use Cosmograph React components, allowing you to analyze graph-based data with ease.
npm install @cosmograph/react
These pre-built Cosmograph React components provide a simple yet powerful interface for displaying and interacting with your graph data. The library comes with a useCosmograph
hook, granting developers easy access to the Cosmograph instance and its data in their components.
CosmographProvider
is a component used to inject a Cosmograph instance and its data throughout your application via React's Context API. To put CosmographProvider
into service, wrap your application around it and pass the nodes and links to populate Cosmograph with initial data.
import { CosmographProvider, Cosmograph } from '@cosmograph/react'
const nodes = [
{ id: 0, color: 'red' },
{ id: 1, color: 'green' },
{ id: 2, color: 'blue' },
]
const links = [
{ source: 0, target: 1, color: 'blue' },
{ source: 1, target: 2, color: 'green' },
{ source: 2, target: 0, color:'red' },
]
function App() {
return (
<CosmographProvider nodes={nodes} links={links}>
<Cosmograph
nodeColor={d => d.color}
linkColor={d => d.color}
/>
{/* Your app components */}
</CosmographProvider>
)
}
⚠️ Ensure your initialization of Cosmograph takes place inside CosmographProvider. Failing to do so will prevent the Cosmograph React components from displaying as they rely on it.
Regardless of the depth of your Cosmograph React components in the component tree, they should be encompassed inside the CosmographProvider
.
After surrounding your app with CosmographProvider
, the useCosmograph
hook can now be used to access the Cosmograph instance and the provided nodes and links data.
import { useCosmograph } from'@cosmograph/react'
function MyComponent() {
const { cosmograph, nodes, links } = useCosmograph()
// You can use cosmograph and data here
return (
// Your component JSX
)
}
❗ IMPORTANT: useCosmograph
must be called within a component that is a direct descendant of the CosmographProvider
. Attempting to use it outside of the provider will trigger an error.
Currently, @cosmograph/react
provides four components ready for use:
Cosmograph
: The primary component.CosmographSearch
: A search engine specifically created for Cosmograph
.CosmographTimeline
: Offers a timeline feature for visualizing data over time.CosmographHistogram
: A fully customizable histogram component.✏️ All the components included support refs and can be accessed via useRef
or useCallback
for developers to have better control and management. Consult the component documentation for more details.
For more information see the documentation.
@cosmograph/react
is licensed under the CC-BY-NC-4.0 license, or the Creative Commons Attribution-NonCommercial 4.0 International License.
FAQs
Cosmograph React Wrapper
The npm package @cosmograph/react receives a total of 554 weekly downloads. As such, @cosmograph/react popularity was classified as not popular.
We found that @cosmograph/react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.