
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@ethan_arrowood/graphy
Advanced tools
A not so serious graph database written in TypeScript and operating in memory.
npm i @ethan_arrowood/graphy
Input:
import Graphy from '@ethan_arrowood/graphy'
// For JS users:
// const { Graphy } = require('@ethan_arrowood/graphy')
const db = new Graphy()
const nodeA = db.addNode('a')
const nodeB = db.addNode('b')
const nodeC = db.addNode('c')
const relation1 = db.addRelation('foo', nodeA, nodeB)
const relation2 = db.addRelation('bar', nodeB, nodeC)
console.log(nodeA.toString())
console.log(nodeB.toString())
console.log(nodeC.toString())
console.log(relation1.toString())
console.log(relation2.toString())
Output:
GraphyNode [1]: a
GraphyNode [2]: b
GraphyNode [3]: c
GraphyRelationship [4]: (1)-(foo)-(2)
GraphyRelationship [5]: (2)-(bar)-(3)
FAQs
A not so serious graph database
We found that @ethan_arrowood/graphy 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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.