Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@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
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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.