Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-graph-vis

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-graph-vis - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

package.json
{
"name": "react-graph-vis",
"version": "0.0.1",
"version": "0.0.2",
"description": "A react component to render nice graphs using vis.js",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -1,1 +0,32 @@

A React component to display beautiful graphs using vis.js
# React graph vis
A React component to display beautiful network graphs using vis.js
Make sure to visit [visjs.org](http://visjs.org) for more info.
This package allows to render network graphs using vis.js.
Rendered graphs are scrollable, zoomable, retina ready, dynamic, and switch layout on double click.
![A graph rendered by vis js](http://visjs.org/images/exampleScreenshots/network/4.png)
var Graph = require('react-graph-vis');
var data = {
nodes: [
{id: 1, label: 'Node 1'},
{id: 2, label: 'Node 2'},
{id: 3, label: 'Node 3'},
{id: 4, label: 'Node 4'},
{id: 5, label: 'Node 5'}
],
edges: [
{from: 1, to: 2},
{from: 1, to: 3},
{from: 2, to: 4},
{from: 2, to: 5}
]
};
React.render(<Graph graph={data}/>, document.body);
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc