Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@neo4j/graph-introspection
Advanced tools
import neo4j, { session } from "neo4j-driver";
import { model } from "@neo4j/graph-schema-utils";
import { introspect, sessionFactory } from "@neo4j/graph-introspection";
async function main() {
const driver = neo4j.driver(
"neo4j://localhost:7687",
neo4j.auth.basic("neo4j", "password")
);
// We want a session factory here so we can work in multiple sessions
const graphSchema = await introspect(sessionFactory(driver, session.READ));
// Put it in the JSON representation wrapper
// this is only required if the serialized representation is the end goal
const wrappedSchema = new model.GraphSchemaRepresentation(
"1.0.0",
graphSchema
);
// outputs standard graph schema JSON representation
console.log(wrappedSchema.toJson(2));
await driver.close();
}
main();
Running npm run test:integration
will create a new database named integration.tests
and delete it after the tests finish.
This means you'd need Neo4j Enterprise to run the integration tests and put credentials in .env
file.
To spin up a docker container for running tests, run this command:
docker run \
--name testneo4j \
--rm \
-p7474:7474 -p7687:7687 \
--env NEO4J_ACCEPT_LICENSE_AGREEMENT=eval \
--env NEO4J_AUTH=neo4j/password \
neo4j:enterprise
FAQs
Library for introspecting Neo4j graph schemas
The npm package @neo4j/graph-introspection receives a total of 0 weekly downloads. As such, @neo4j/graph-introspection popularity was classified as not popular.
We found that @neo4j/graph-introspection demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.