Socket
Socket
Sign inDemoInstall

alga-ts

Package Overview
Dependencies
1
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    alga-ts

Algebraic graphs in TypeScript


Version published
Maintainers
1
Install size
18.4 kB
Created

Readme

Source

Algebraic graphs implementation in TypeScript

npm Build Status

alga-ts is a library for algebraic construction and manipulation of graphs in TypeScript. This is a TypeScript port of alga and alga-scala.

See this Haskell Symposium paper and the corresponding talk for the motivation behind the library, the underlying theory and implementation details. There is also a Haskell eXchange talk, and a tutorial by Alexandre Moine.

N.B. Please note that this project is WIP, so use it at your own discretion.

Installation

The main library, alga-ts, is available at the NPM. As it uses fp-ts for higher-kinded types, be sure to install it as well:

npm install --save alga-ts fp-ts

Usage

To begin using alga-ts, you first need to obtain an instance of it's API for the given Eq of your target data type. Consider the example:

import { getStructEq, eqNumber, eqString } from 'fp-ts/lib/Eq';
import { getInstanceFor } from 'alga-ts';

interface User {
  name: string;
  age: number;
}

const eqUser = getStructEq({
  name: eqString,
  age: eqNumber,
});

const G = getInstanceFor(eqUser);

Now G is a module containing all methods & constructors required to work with graphs of User:

const user1: User = { name: 'Alice', age: 32 };
const user2: User = { name: 'Bob', age: 41 };
const user3: User = { name: 'Charlie', age: 28 };

const graph1 = G.connect(
  G.edge(user1, user2),
  G.edge(user2, user3),
);

console.log(G.hasEdge(user1, user3, graph1)); // => true

Pipeable graphs

Algbraic graphs happen to have type class instances for Monad (and, consequently, for Functor and Applicative) and Alternative. API instance, obtained via getInstanceFor, exposes methods from these type classes in a data-last form, so they could be used with pipe from fp-ts:

import { pipe } from 'fp-ts/lib/pipeable';
import { getInstanceFor } from 'alga-ts';

const GS = getInstanceFor(eqString);

...

const graph2 = pipe(
  graph1,
  G.map(u => u.name),
);

console.log(GS.hasEdge('Alice', 'Charlie', graph2)); // => true

Keywords

FAQs

Last updated on 26 Aug 2020

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