Socket
Socket
Sign inDemoInstall

@ralfderijcke/graph

Package Overview
Dependencies
0
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ralfderijcke/graph

Basic graph data structure to store data


Version published
Maintainers
1
Weekly downloads
10

Weekly downloads

Readme

Source

Graph

npm version

Basic graph data structure to store data.

Installation

@ralfderijcke/graph is available as a package on npm.

npm install @ralfderijcke/graph --save

Getting Started

const graph = new Graph();

const object1 = {};
const vertex1 = new Vertex(object1);

const object2 = {};
const vertex2 = new Vertex(object2);

const edge1 = graph.addEdge(vertex1, vertex2);

Keywords

FAQs

Last updated on 11 Jan 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc