Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
A simple node & browser graph database
npm install --save giraffe
import Giraffe from 'giraffe';
const db = new Giraffe();
export default db;
new Giraffe(data, callback)
data
: Object
Optional
{ nodes: [], edges: [] }
Nodes
and Edges
are checked for their correct shape.callback
: Function
Optional
.create(label, data)
label
: String
|| Array
Optionaldata
: Object
label
is type checked and coerced into a Array within the Node
constructor.remove(nodes)
nodes
: Array
Array of Nodes to be removed from graph
.edge([ from ], [ to ], label, properties)
from
Array
Array of Nodes where edge originatesto
: Array
Array of Nodes where edge goeslabel
: String
Optionalproperties
: Object
Optional.query(label, properties)
label
: String
Optionalproperties
: Object
Optional
_edges
.update([ nodes ], [ labels ], data)
nodes
: Array
(or single) node to be updatedlabels
: Array
(or single) label to be added to Nodes.data
: Object
Data set to be merged with previous data, any duplicate keys will be overwritten.{
/**
* All relationships with additional properties
*/
edges: [],
/**
* All nodes with properties
*/
nodes: [],
/**
* Dynamic key:value store for tracking known node and edge labels
*/
labels: {
nodes: {
[label]: [/* Array of Node ids */]
},
edges: {
[label]: [/* Array of Edge ids */]
}
}
}
The callback
passed to your DB instance is called before the return statement of every method. That is to say db.create
returns the created Node
, but just before that return you callback
is fired.
The calls are all identical it is called with the Type
of request and the modified, added, or removed data.
method | type | data |
---|---|---|
Create | 'create' | Node |
Remove | 'remove' | Array[Node ] |
Edge | 'edge' | Array[Edge ] |
Query | 'query' | Array[Query Result ] |
Update | 'update' | Array[Updated Nodes / Edges ] |
{
identity: <UUID />,
properties: Object,
labels: Array,
edges: Array,
}
properties
is the object passed into the db.create
method.edges
is an array of Edge identity's before a query, after a query it is an array of references to the Node
's they represent{
identity: <UUID />,
from: <Node Identity /> || <Node />,
through: <Node Identity /> || <Node />,
label: String,
properties: Object
}
properties
is the object passed into the db.edge
method.from
and through
are stored in the DB as from.identity
and through.identity
.db.query
returns from
and through
are references to the Node
's they representCheckout out the TODO Project on Github.
FAQs
Lightweight Graph DB implementation
We found that giraffe 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.