Socket
Socket
Sign inDemoInstall

@ralfderijcke/graph

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ralfderijcke/graph

Basic graph data structure to store data


Version published
Maintainers
1
Created
Source

Graph

npm version

Basic graph data structure to store data.

Installation

@ralfderijcke/graph is available as a 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

Package last updated on 10 Jan 2023

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc