jay-gee-eff
v4.0.0
Published
JGF - JSON Graph Format manipulation module for JavaScript. Reads and writes JGF files.
Downloads
288
Maintainers
Readme
jay-gee-eff
JGF - JSON Graph Format manipulation module for JavaScript. Reads and writes JGF files.
A library that provides the following features:
- Create JGF in-memory graphs
- Add nodes
- Add edges
- List nodes
- List edges
- Remove nodes
- Remove edges
- Lookup nodes by id
- Lookup edges by source and target nodes, with optional edge relation
- Update node properties and meta data
- Save in-memory graphs into a 100% compatible JGF JSON file
- Load a JGF JSON file into memory
- Validate JGF JSON files, for syntax (JGF schema) and semantics (invalid nodes and edges)
- Ability to load and merge partial JGF graph files (a single graph spread over multiple 'partial' graph files)
- Support the JGF v2 Schema
Important note
The JGF Schema has breaking changes from v1 to v2, in other words v2 is not backward compatible with v1. jay-gee-eff supported JGF Schema v1 up to version 1.3.1. Starting from jay-gee-eff version 3.0.0 the support for schema V1 has been dropped.
Installation
Install the package
npm install jay-gee-eff
Usage
Sample code
/* eslint-disable no-console */
import path from 'path'
import { JGFContainer } from 'jay-gee-eff'
/**
* Main program - demonstrates building an NBA JGF graph.
*/
const program = async () => {
console.log('Building the NBA JGF Graph...')
const container = new JGFContainer(true)
const { graph } = container
graph.id = 'nba-demo-graph-2020'
graph.type = 'sports'
graph.label = 'NBA Demo Graph'
graph.metadata = {
season: 2020
}
const node1Id = 'lebron-james#2544'
const node1Label = 'LeBron James'
const metadata1 = {
type: 'NBA Player'
}
const node2Id = 'la-lakers#1610616839'
const node2Label = 'Los Angeles Lakers'
const metadata2 = {
type: 'NBA Team'
}
const playerContractRelation = 'plays-for'
const playerContractLabel = 'Plays for'
console.log('Adding two nodes...')
graph.addNode(node1Id, node1Label, metadata1)
graph.addNode(node2Id, node2Label, metadata2)
console.log('Adding an edge...')
graph.addEdge(node1Id, node2Id, playerContractRelation, playerContractLabel)
const filename = path.join(path.dirname(__filename), 'nba-graph.json')
console.log(`Saving to file -> ${filename}`)
await container.saveToFile(filename, true)
console.log('Load the saved JGF file')
const container2 = new JGFContainer()
await container2.loadFromFile(filename)
console.log('Graph nodes:')
for (const node of Object.values(container2.graph.nodes)) {
console.log(`\t${node.label} {${node.metadata?.type}}`)
}
console.log('Graph edges:')
for (const edge of container2.graph.edges) {
console.log(`\t${edge.source} (->${edge.label}->) ${edge.target}`)
}
console.log('-- DONE --')
}
;(async () => {
await program()
})()
Expected console output
Building the NBA JGF Graph...
Adding two nodes...
Adding an edge...
Saving to file -> /test-jay-gee-eff/demo/nba-graph.json
Load the saved JGF file
loadFromFile, isSingleGraph: true
Graph nodes:
LeBron James {NBA Player}
Los Angeles Lakers {NBA Team}
Graph edges:
lebron-james#2544 (->Plays for->) la-lakers#1610616839
-- DONE --
The JGF output file (nba-graph.json)
{
"graph": {
"id": "nba-demo-graph-2020",
"type": "sports",
"label": "NBA Demo Graph",
"directed": true,
"metadata": {
"season": 2020
},
"nodes": {
"lebron-james#2544": {
"label": "LeBron James",
"metadata": {
"type": "NBA Player"
}
},
"la-lakers#1610616839": {
"label": "Los Angeles Lakers",
"metadata": {
"type": "NBA Team"
}
}
},
"edges": [
{
"source": "lebron-james#2544",
"target": "la-lakers#1610616839",
"relation": "plays-for",
"label": "Plays for"
}
]
}
}
Development
jay-gee-eff
usespnpm
instead ofnpm
package manager
Install pnpm globally
Follow the instructions specific for your operating system https://pnpm.io/installation
The recommended and easy way -> use npm
:
npm install -g pnpm
Ensure that after the installation the command runs successfully:
pnpm --version
If not there may be a problem with the PATH environment variable
Install dependencies
Install all projects dependencies with pnpm
:
pnpm install
Unit Testing
Unit tests are performed by the jest
framework.
All unit tests files are defined inside the tests
folder and are prefixed with numbers to ensure correct execution order
From VS.CODE
Use the Jest Runner extension to run or debug a test or test suite.
From terminal
Execute the command in terminal
pnpm test
Run the demo program locally
Execute the command in terminal to generate an NBA JGF file
pnpm demo
Prettier
Check code style formatting
pnpm prettier
Fix code style formatting
pnpm prettier:fix
Lint
pnpm lint
Publishing a version to npm registry
# Increment version
npm version <patch | minor | major>
# Push tags to github
git push --tags
# Publish package to npm
pnpm publish
References
JGF Specification
http://jsongraphformat.info/
Test Examples
Source: https://github.com/jsongraph/json-graph-specification/tree/master/examples