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

pull-pal

v0.1.3

Published

Git push wrapper that auto-fetches, rebases against the default branch, and runs tests before pushing

Downloads

39

Readme

pull-pal

A git push wrapper that automatically:

  • Fetches the remote
  • Checks if your branch is behind the remote default branch (main, master, etc.)
  • Rebases if needed
  • Detects and runs your project's test suite
  • Blocks the push if tests fail

Works with any language or framework — Node, Python, Go, Rust, Java, Ruby, and more. No configuration required.


Install

npm install -g pull-pal

Installs the correct precompiled binary for your platform automatically.


Usage

Replace git push with pull-pal:

pull-pal

All standard git push flags are passed through:

pull-pal --force-with-lease
pull-pal origin my-feature-branch
pull-pal origin main --tags

Options

| Flag | Description | |---|---| | --no-rebase | Skip the fetch + rebase step | | --no-tests | Skip the test runner step | | --help | Show help |


Auto-run on every git push

Install a pre-push hook in any repo once:

pull-pal setup

Every git push from that point — terminal, IDE, or GUI — automatically triggers the full pull-pal workflow. To remove the hook:

pull-pal remove-hook

What it does, step by step

→ Fetching remote...
✓ Fetched

→ Checking against origin/main...
✓ Up to date with origin/main

→ Detecting test runner...
→ Running: bun test
... (test output) ...
✓ Tests passed

→ Pushing...
✓ Pushed successfully!

If your branch is behind:

→ Behind origin/main — rebasing...
✓ Rebased onto origin/main

If tests fail:

✗ Tests failed — push blocked.

Supported test runners

Detected automatically by project files — no config needed:

| Project files | Command | |---|---| | package.json with "test" script | bun test or npm test | | Cargo.toml | cargo test | | go.mod | go test ./... | | pyproject.toml / pytest.ini / setup.py | pytest | | pom.xml | mvn test | | build.gradle / gradlew | ./gradlew test | | Makefile with test target | make test | | Gemfile + spec/ directory | bundle exec rspec | | Gemfile (no spec/) | bundle exec rake test |

If no runner is detected, a warning is shown and the push proceeds.


How it works

pull-pal ships as a thin JS wrapper (run.js) that resolves the correct precompiled binary for your OS and CPU from one of four optional dependencies:

  • @nikeproduct/pull-pal-darwin-arm64 — macOS Apple Silicon
  • @nikeproduct/pull-pal-darwin-x64 — macOS Intel
  • @nikeproduct/pull-pal-linux-x64 — Linux x64
  • @nikeproduct/pull-pal-win32-x64 — Windows x64

npm installs only the one that matches your platform.


Other install methods

pip:

pip install pull-pal

Homebrew (macOS):

brew tap nikeproduct/pull-pal
brew install pull-pal

License

MIT — github.com/nikeproduct/pull-pal