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

@gettyimages/git-fi

v1.0.4

Published

Git plugin that maintains a temporary integration branch for early conflict detection

Downloads

904

Readme

git-fi

A git plugin that maintains a temporary integration branch named fi. Merge multiple in-progress feature branches together to detect conflicts early and test features in collaboration — before they land on main.

Documentation & install | Specification

This README is for working on git-fi itself. To install and use it, see the documentation site.

Local development

Requires Node.js >= 18 and git >= 2.50.0.

git clone https://github.com/gettyimages/git-fi.git
cd git-fi
npm install                 # dev dependencies (tsx, typescript)

Day-to-day, git-fi runs straight from source — no global install needed:

npm start -- --help         # run src/ directly via tsx
npm run build               # compile TypeScript to dist/
npm test                    # build, then run the integration suite

npm test is the primary feedback loop: it drives the compiled binary against throwaway git repositories (a bare origin plus a working clone), exercising real git fetch/merge/push behavior end-to-end.

To try your local build as the git fi subcommand in another repository, install the checkout globally:

npm install -g .            # puts your build on PATH as `git fi`

The published package — npm install -g @gettyimages/git-fi, documented on the docs site — is the official install for end users. Reach for it here mainly to test the distribution itself; local development runs from source.

The implementation follows SPEC.md, which defines every requirement with a unique ID and includes mermaid diagrams for the major flows.

Project Structure

SPEC.md        Behavioral specification
STATUS.md      Requirement coverage
src/           TypeScript implementation
test/          Integration suite (Node test runner)
docs/          Docsify documentation site
scripts/       Build-time generators
man/           Generated man page (git-fi.1)
completions/   Generated bash + zsh completions

The man page and shell completions are generated by scripts/gen-docs.ts, which draws the flag list from src/help.ts — the single source of truth for git-fi's flags. The completion logic itself lives in real shell files under scripts/completion/ (*.tmpl); the generator injects the flag list and stamps a banner. npm run build regenerates the outputs (via npm run gen:docs); those under man/ and completions/ are committed, so edit src/help.ts (flags) or scripts/completion/*.tmpl (completion logic) and rebuild rather than editing the generated files by hand.

Contributing

Bug reports and pull requests are welcome on GitHub.

License

MIT — Copyright (c) 2017-2026 Getty Images.