npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

traffic-traversal

v1.4.0

Published

Calculate the weights between each vertex node and help you find the fastest route.

Downloads

12

Readme

traffic-traversal

Github node.js workflow

Calculate the weights between each vertex node and help you find the fastest route.

import { TrafficGraph, TrafficTraversal } from 'traffic-traversal'

const graph = TrafficGraph.Create()

graph.to('start', {
  b: 10,
  c: 20
}).to('b', { goal: 5 }).to('c', { goal: 5 })

const traversal = TrafficTraversal.Create(graph.state)

traversal.routes('start', 'goal') // ['start', 'b', 'goal']

traversal.traffic('start', 'goal') // 15
traversal.traffic('goal', 'start') // Infinity

traversal.reachable('start', 'goal') // true
traversal.reachable('goal', 'start') // false

traversal.depth('start', 'goal') // 2
traversal.depth('goal', 'start') // Infinity

traversal.distance('start', 'goal') // 2
traversal.distance('goal', 'start') // 2

traversal.edges('start') // ['b', 'c', 'goal']
traversal.edges('start', 1) // ['b', 'c']

Method

TrafficGraph

constructor(data?: TrafficGraphData)

Create a new graph instance. You can generate from existing data using data parameters.

(getter) data: TrafficGraphData

Returns to an array in the form that can serialize the graph information of the current instance.

(getter) state: Readonly<ITrafficGraphState>

The current status of the instance is exported to an immutable object.

(getter) vertices: string[]

Returns all the vertices listed in the current instance in an array.

(getter) clone: TrafficGraph

Currently copied instance and returns to a new instance.

to(source: string, dest: GraphVertex): this

Create a single direction weight route. It is possible to traverse the source to dest, but vice versa is impossible. If you had the same vertex before, the value is overwritten.

You can specify relative values. If you fill in the prior character +=, -=, *=, /=, The target value is calculated based on the current value of the property.

both(a: string, b: GraphVertex): this

Set the weight route that leads to both directions between the two vertices. 'a' vertex and 'b' vertex can traverse to each other.

For example, graph.both('a', { b: 1 }) is same as graph.to('a', { b: 1 }).to('b', { a: 1 })

You can specify relative values. If you fill in the prior character +=, -=, *=, /=, The target value is calculated based on the current value of the property.

all(dest: GraphVertex): this

Set the weight between all vertices passed by parameters.

For example, graph.all({ a: 1, b: 2, c: 3 }) is same as graph.to('a', { b: 2, c: 3 }).to('b', { a: 1, c: 3 }).to('c', { a: 1, b: 2 })

You can specify relative values. If you fill in the prior character +=, -=, *=, /=, The target value is calculated based on the current value of the property.

unlinkTo(source: string, dest: string): this

Delete the single direction weight route created by the to method.

unlinkBoth(a: string, b: string): this

Delete the bidirectional weight route created by the both method.

drop(vertex: string): this

Delete certain vertices. All weight routes connected to the vertex are deleted.

has(vertex: string): boolean

It returns whether the instance has a vertex.

hasAll(...vertices: string[]): boolean

It returns whether all the vertices exist in that instance. Returns false if any of the vertices are missing.

invert(): this

Invert all weights in an instance. For example, when A to B has a 2 weight, it will be -2. It's useful for switching the shortest to longest routes or minimum to maximum traffic in a graph.

TrafficTraversal

constructor(trafficGraphState: ITrafficGraphState)

Create an instance that is responsible for the route and utility functions of the graph instance. It takes a graph.state instance as a parameter.

routes(from: string, to: string): string[]

Finds the route with the lowest weight between two vertices and returns it as an array.

edges(vertex: string, depth = -1): string[]

Returns a list of vertices adjacent to that vertex as an array. You can set a depth limit using the depth parameter.

reachable(from: string, to: string): boolean

Returns whether the target vertex can be reached from the starting vertex.

traffic(from: string, to: string): number

Returns the sum of the least weighted routes from the starting vertex to the target vertex. If unreachable, returns Infinity.

depth(from: string, to: string): number

Returns the shortest distance from the starting vertex to the target vertex. This is similar to the distance method, but takes direction into account. If unreachable, returns Infinity.

distance(a: string, b: string): number

Returns the shortest distance between two vertices. This is similar to the depth method, but does not take direction into account. If unreachable, returns Infinity.

Install

Node.js (cjs)

npm i traffic-traversal

Browser (esm)

<script type="module">
  import { TrafficGraph, TrafficTraversal } from 'https://cdn.jsdelivr.net/npm/[email protected]/dist/esm/index.min.js'
</script>

License

MIT LICENSE