🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

igraph-wasm

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

igraph-wasm

This is an igraph wasm export that's targeting for browser and nodejs.

latest
Source
npmnpm
Version
0.0.3
Version published
Weekly downloads
1
-75%
Maintainers
1
Weekly downloads
 
Created
Source

Igraph Wasm

This is an igraph wasm export that's targeting for browser and nodejs.

Usage

import { Graph } from '../src/index';

const main = async () => {
    const g = new Graph();
    await g.init();
    const instance = g.createInstance();
    instance.feed([0,1,2,1,3,2], 4);
    instance.fruchtermanReingold3DLayout(100, 10);
    console.log(instance.queryPoint(0, 3));
    console.log(instance.queryPoint(1, 3));
    instance.free();
}

main();

FAQs

Package last updated on 09 Mar 2022

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