MCPcopy Index your code
hub / github.com/algebraic-graphs/typescript

github.com/algebraic-graphs/typescript @v1.0.2

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.0.2 ↗ · + Follow
35 symbols 68 edges 4 files 0 documented · 0%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

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

Extension points exported contracts — how you extend this code

Empty (Interface)
(no doc)
src/alga.ts
User (Interface)
(no doc)
examples/users.ts
Vertex (Interface)
(no doc)
src/alga.ts
Overlay (Interface)
(no doc)
src/alga.ts
Connect (Interface)
(no doc)
src/alga.ts
URItoKind (Interface)
(no doc)
src/alga.ts

Core symbols most depended-on inside this repo

fold
called by 13
src/alga.ts
vertex
called by 4
src/alga.ts
getInstanceFor
called by 4
src/alga.ts
empty
called by 3
src/alga.ts
overlays
called by 2
src/alga.ts
edgeSet
called by 2
src/alga.ts
_simple
called by 2
src/alga.ts
vertices
called by 1
src/alga.ts

Shape

Function 29
Interface 6

Languages

TypeScript100%

Modules by API surface

src/alga.ts34 symbols
examples/users.ts1 symbols

For agents

$ claude mcp add typescript \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact