npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@neo4j-labs/cli

v1.7.0

Published

Neo4j command-line tool (super-CLI). Installs the right prebuilt binary for your platform.

Readme

@neo4j-labs/cli

The Neo4j command-line tool, distributed as a prebuilt native binary via npm.

Install

npm i -g @neo4j-labs/cli

This installs a small Node wrapper plus one platform-specific package containing the prebuilt neo4j-cli binary for your OS and CPU. npm picks the matching platform package automatically — there is no postinstall script and no source build.

After install, neo4j-cli is on your PATH:

neo4j-cli --help
neo4j-cli aura instance list --format table

pnpm add -g @neo4j-labs/cli and yarn global add @neo4j-labs/cli work the same way.

Supported platforms

| OS | CPU | | --------- | ------- | | darwin | arm64 | | darwin | x64 | | linux | arm64 | | linux | ia32 | | linux | x64 | | win32 | arm64 | | win32 | ia32 | | win32 | x64 |

If your platform is in the table above but the wrapper still complains that no prebuilt binary was found, your install probably ran with --no-optional or --omit=optional. Reinstall without that flag — the per-platform binary lives in an optionalDependencies entry, so excluding optionals also excludes the binary.

If your platform is not in the table, npm i -g @neo4j-labs/cli will still succeed (the platform packages are optional), but invoking neo4j-cli will print a friendly error naming the detected platform and arch. Download a prebuilt binary directly from GitHub Releases or build from source.

Release channels

npm i -g @neo4j-labs/cli           # latest stable
npm i -g @neo4j-labs/cli@alpha     # alpha prerelease
npm i -g @neo4j-labs/cli@beta      # beta prerelease
npm i -g @neo4j-labs/cli@rc        # release candidate
npm i -g @neo4j-labs/cli@next      # any other prerelease (e.g. snapshot, dev)

The dist-tag is picked from the version string at publish time: X.Y.Z-alpha*alpha, X.Y.Z-beta*beta, X.Y.Z-rc*rc, any other --suffixed version → next, plain X.Y.Zlatest.

Write operations

Write commands require --rw. neo4j-cli query runs EXPLAIN first when --rw is absent and blocks mutating Cypher before execution.

neo4j-cli aura instance delete <id> --rw
neo4j-cli config set telemetry false --rw
neo4j-cli query 'CREATE (:Person {name:"Alice"})' --rw

Set DO_NOT_TRACK=1 to disable telemetry without writing config.

Documentation and feedback

  • Project repo and full docs: https://github.com/neo4j-labs/neo4j-cli
  • Issue tracker: https://github.com/neo4j-labs/neo4j-cli/issues
  • Project README: https://github.com/neo4j-labs/neo4j-cli/blob/main/README.md

License

Apache-2.0. See the project repo for the full license text and third-party notices.