Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Simple synchronous in-memory graph store, for keeping track of relationships.
Beirada is a simple Javascript library for manipulating directed and undirected graphs.
Your graphs may have self edges, weighted edges, and directed edges, but not multiedges.
const Graph = require('beirada')
var g = new Graph()
g.set('a', 'b', 3) # creates edge (a, b) with weight 3
g.get('a', 'b') # returns 3
g.set('a', 'b', 4) # changes (a, b) weight to 4
g.get('a', 'b') # returns 4
g.del('a', 'b') # removes edge (a, b)
g.get('a', 'b') # returns undefined
new Graph({
a: ['b', 'c'],
c: ['b'],
}) # triangle with vertices a, b, and c
new Graph({
a: {b: 2},
b: {c: 3},
}) # path with vertices a, b, c and weights (a, b) = 2, (b, c) = 3
new Graph({a: ['-b', '-c']}) # Directed edges to b and c.
var g = new Graph({
a: ['b'],
b: ['c'],
}) # path with vertices a, b, c
g.degree('a') # returns 1
g.degree('b') # returns 2
g.degree('c') # returns 1
g.size() # returns 2, the number of edges
g.order() # returns 3, the number of vertices
for (v in g.adj('b')) {
# v = a, c (in no particular order)
}
var g = new Graph()
g.dir('a', 'b') # a ~ b, but b !~ a
g.has('a', 'b') # true
g.has('b', 'a') # false
g.set('a', '-b') # Same as g.dir('a', 'b');
var g = new Graph()
g.set('a', 'b') # a ~ b, and b ~ a
g.deldir('b', 'a') # remove b ~ a
g.has('a', 'b') # true
g.has('b', 'a') # false
var g = new Graph({
a: ['b', 'c'],
c: ['d'],
})
var h = g.copy() # an independent copy of g
You may mix directed and undirected edges in the same graph.
A pair of directed edges (a, b) and (b, a) is always collapsed into an undirected edge. An undirected edge (a, b) may be expanded into a directed edge (a, b) by deleting the directed edge (b, a) with deldir(b, a)
.
For consistency, the size of a graph is defined to be the number of undirected edges plus the number of directed edges. In other words, two distinct directed edges between two distinct vertices do not count twice for the size.
A directed self edge is indistinguishable from an undirected self edge.
Beirada is packaged with nodeunit
tests.
The easiest way to run the tests is with npm test
.
$ npm test
...
OK: 173 assertions (23ms)
FAQs
Simple synchronous in-memory graph store, for keeping track of relationships.
The npm package beirada receives a total of 0 weekly downloads. As such, beirada popularity was classified as not popular.
We found that beirada demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.