All Projects β†’ visjs β†’ Vis Network

visjs / Vis Network

Licence: other
πŸ’« Display dynamic, automatically organised, customizable network views.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Vis Network

Diagrams
🎨 Diagram as Code for prototyping cloud system architectures
Stars: ✭ 15,756 (+1101.83%)
Mutual labels:  hacktoberfest, diagram
Iproute2 Cheatsheet
iproute2 command reference
Stars: ✭ 330 (-74.83%)
Mutual labels:  hacktoberfest, network
Librenms
Community-based GPL-licensed network monitoring system
Stars: ✭ 2,567 (+95.8%)
Mutual labels:  hacktoberfest, network
Kalm.js
The socket manager
Stars: ✭ 155 (-88.18%)
Mutual labels:  hacktoberfest, network
Drawthe.net
drawthe.net draws network diagrams dynamically from a text file describing the placement, layout and icons. Given a yaml file describing the hierarchy of the network and it's connections, a resulting diagram will be created.
Stars: ✭ 729 (-44.39%)
Mutual labels:  network, diagram
React Native Network Logger
An HTTP network request monitor for React Native with in-app interface for iOS and Android with no native code
Stars: ✭ 161 (-87.72%)
Mutual labels:  hacktoberfest, network
Affinity
Free 2D symbols for computer network diagrams
Stars: ✭ 294 (-77.57%)
Mutual labels:  network, diagram
Libmtev
Mount Everest Application Framework
Stars: ✭ 104 (-92.07%)
Mutual labels:  hacktoberfest, network
Tech Refrigerator
🍰 기술 냉μž₯κ³ μž…λ‹ˆλ‹€. πŸ›’ 기술 λ©΄μ ‘ , 전곡 μ‹œν—˜ , 지식 함양 λ“± λΆ„λͺ… 도움될 κ±°μ˜ˆμš”! 🀟
Stars: ✭ 699 (-46.68%)
Mutual labels:  hacktoberfest, network
Glorytun
Multipath UDP tunnel
Stars: ✭ 437 (-66.67%)
Mutual labels:  hacktoberfest, network
Tikzcd Editor
A simple visual editor for creating commutative diagrams.
Stars: ✭ 1,627 (+24.1%)
Mutual labels:  hacktoberfest, diagram
G6
β™Ύ A Graph Visualization Framework in JavaScript
Stars: ✭ 8,490 (+547.6%)
Mutual labels:  network, diagram
Vscode Mermaid Preview
Previews Mermaid diagrams
Stars: ✭ 111 (-91.53%)
Mutual labels:  hacktoberfest, diagram
Ivre
Network recon framework, published by @cea-sec & @ANSSI-FR. Build your own, self-hosted and fully-controlled alternatives to Shodan / ZoomEye / Censys and GreyNoise, run your Passive DNS service, collect and analyse network intelligence from your sensors, and much more!
Stars: ✭ 2,331 (+77.8%)
Mutual labels:  hacktoberfest, network
Wavedrom
🌊 Digital timing diagram rendering engine
Stars: ✭ 1,668 (+27.23%)
Mutual labels:  hacktoberfest, diagram
Cidr.xyz
Web-based CIDR / netmask / IP address visualizer
Stars: ✭ 293 (-77.65%)
Mutual labels:  hacktoberfest, network
Mud
Multipath UDP library
Stars: ✭ 100 (-92.37%)
Mutual labels:  hacktoberfest, network
Pytm
A Pythonic framework for threat modeling
Stars: ✭ 363 (-72.31%)
Mutual labels:  hacktoberfest, diagram
Whatpulse
WhatPulse reverse engineered
Stars: ✭ 30 (-97.71%)
Mutual labels:  hacktoberfest, network
Asciidoctor Kroki
Asciidoctor.js extension to convert diagrams to images using Kroki!
Stars: ✭ 55 (-95.8%)
Mutual labels:  hacktoberfest, diagram

vis-network

example chart

Network is a visualization to display networks and networks consisting of nodes and edges. The visualization is easy to use and supports custom shapes, styles, colors, sizes, images, and more. The network visualization works smooth on any modern browser for up to a few thousand nodes and edges. To handle a larger amount of nodes, Network has clustering support. Network uses HTML canvas for rendering.

Badges

semantic-release Renovate npm

dependencies Status devDependencies Status peerDependencies Status

GitHub contributors Backers on Open Collective Sponsors on Open Collective

Install

Install via npm:

$ npm install vis-network

Example

A basic example on loading a Network is shown below. More examples can be found in the examples directory of the project.

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Network</title>
    <script
      type="text/javascript"
      src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"
    ></script>
    <style type="text/css">
      #mynetwork {
        width: 600px;
        height: 400px;
        border: 1px solid lightgray;
      }
    </style>
  </head>
  <body>
    <div id="mynetwork"></div>
    <script type="text/javascript">
      // create an array with nodes
      var nodes = new vis.DataSet([
        { 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" },
      ]);

      // create an array with edges
      var edges = new vis.DataSet([
        { from: 1, to: 3 },
        { from: 1, to: 2 },
        { from: 2, to: 4 },
        { from: 2, to: 5 },
        { from: 3, to: 3 },
      ]);

      // create a network
      var container = document.getElementById("mynetwork");
      var data = {
        nodes: nodes,
        edges: edges,
      };
      var options = {};
      var network = new vis.Network(container, data, options);
    </script>
  </body>
</html>

Build

To build the library from source, clone the project from github

$ git clone git://github.com/visjs/vis-network.git

The source code uses the module style of node (require and module.exports) to organize dependencies. To install all dependencies and build the library, run npm install in the root of the project.

$ cd vis-network
$ npm install

Then, the project can be build running:

$ npm run build

Test

To test the library, install the project dependencies once:

$ npm install

Then run the tests:

$ npm run test

Contribute

Contributions to the vis.js library are very welcome! We can't do this alone!

Backers

Thank you to all our backers! πŸ™

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website.

License

Copyright (C) 2010-2018 Almende B.V. and Contributors Copyright (c) 2018-2021 Vis.js contributors

Vis.js is dual licensed under both

and

Vis.js may be distributed under either license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].