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

@andreduejon/codepulse

v0.1.0

Published

A read-only terminal git graph visualizer

Readme

codepulse

A read-only terminal git graph visualizer. Navigate your repository history, inspect commits, view diffs with blame, and browse branches — all from the terminal.

Built with Bun, SolidJS, and @opentui/solid.

Vision

codepulse starts as a git-first terminal UI and is planned to grow into a read-only codebase dashboard: git history as the primary navigation surface, with CI/CD, security, and code quality signals layered onto the same commit and branch context.

The current release is focused on the git experience. Integration planning for future milestones lives in .planning/ locally and is summarized in the roadmap below.

Requirements

Install

bun install -g @andreduejon/codepulse

Global installs are supported directly through the packaged codepulse binary.

Usage

codepulse [options] [path]

If no path is given, the current directory is used.

Options

| Flag | Description | |------|-------------| | -b, --branch <name> | Show only a specific branch | | -n, --max-count <n> | Maximum number of commits to show (default: 500) | | --theme <name> | Color theme (see Themes below) | | --no-all | Don't show all branches | | -h, --help | Show help | | -v, --version | Show version |

Keyboard Shortcuts

Graph

| Key | Action | |-----|--------| | / | Navigate commits | | Shift+↑ / Shift+↓ | Jump 10 commits | | PgUp / PgDn | Jump 20 commits | | g / G | First / last commit | | Enter / | Focus detail panel | | / Esc / q | Back | | / | Search commits | | f | Fetch from remote | | R | Reload | | m | Menu (repository, branches) | | Ctrl+T | Change theme | | ? | Show help |

Detail panel

| Key | Action | |-----|--------| | / | Navigate items | | Tab | Switch tabs (Files / Stashes / Details) | | Enter | Open diff+blame for selected file | | / Esc / q | Return to graph |

Diff+blame dialog

| Key | Action | |-----|--------| | / | Scroll diff | | / | Navigate files | | b | Toggle blame column | | d / u / s | Diff / unified / split view | | Esc / q | Close |

Themes

Pass the theme name via --theme <name> or switch live with Ctrl+T.

| Name | --theme value | |------|----------------| | Catppuccin Mocha (default) | catppuccin-mocha | | OpenCode Original | open-code-original | | Tokyo Night | tokyo-night | | Dracula | dracula | | Nord | nord | | One Dark Pro | one-dark | | Gruvbox Dark | gruvbox | | Monokai Pro | monokai | | Ayu Mirage | ayu-mirage | | Synthwave '84 | synthwave | | Rosé Pine | rose-pine |

Roadmap

Planned milestones currently follow this shape:

  • 0.1.0: config file support, richer search, lazy commit loading, and core UX polish
  • 0.2.0: graph power features such as ancestry workflows and path-aware history views
  • 0.3.0+: read-only integrations for GitHub Actions, Jenkins, Snyk, and SonarQube

The intent is to reach 1.0.0 once the integration model and configuration surface are stable.

License

MIT © andreduejon