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

gitpad-2

v1.0.1

Published

Git-powered local-first notes and code workspace.

Readme

GitPad

Platform: Electron Frontend: React + TypeScript Styling: Tailwind CSS Tests License: MIT npm

GitPad is a local-first desktop workspace for notes and code where each workspace is a real Git repository.

GitPad combines:

  • a file explorer with real filesystem operations
  • a multi-tab editor
  • command palette and quick-open workflows
  • integrated Git history, branches, staging, and diff inspection
  • terminal and GitHub sync tools
  • local account/session and activity feed foundations

Core Behaviors

  • Creating a workspace initializes a repository but does not create a commit.
  • Commits are created from staged changes with an explicit commit message.
  • Workspaces are isolated from each other (tree, tabs, history, settings state).
  • Frontend (src/*) and backend (backend/*, electron/*) are separated by a typed IPC bridge.

Feature Set

  • Workspace lifecycle: create, open, switch, rename, delete.
  • Explorer: create file/folder, rename, duplicate, delete, drag-drop move, filter, context menu, collapse all.
  • Editor: open files, multi-tab editing, dirty indicators, save active, save all, close/close others/close all, reopen closed tab.
  • Command palette (Ctrl+K) with actionable commands and categories.
  • Quick open (Ctrl+P) for fuzzy file navigation.
  • Search with advanced filters and “search inside results”.
  • Source control panel with stage/unstage, discard, commit, branch-aware diffs, and merge.
  • Git history panel with filtering, details, revert, restore, and diff views.
  • Terminal integration for Git and shell commands.
  • GitHub sync with encrypted token storage in desktop secure storage.
  • Account/session panel and activity feed.

Keyboard Shortcuts

  • Ctrl+K: command palette
  • Ctrl+P: quick open file
  • Ctrl+S: save active file
  • Ctrl+W: close active tab
  • Ctrl+B: toggle explorer sidebar
  • Ctrl+Shift+F: search
  • Ctrl+N: new note
  • Ctrl+Shift+N: quick capture

Run Locally

npm install
npm run dev

Production build:

npm run build
npm run start

Build artifacts are written to target/:

  • target/dist
  • target/dist-electron

Windows release executable:

npm run release:win

The installer .exe is generated in target/release/.

Tests:

npm test

Containerization

GitPad includes Docker targets for dev, CI, and headless desktop runtime.

Build the CI image (runs tests + build):

docker build --target ci -t gitpad:ci .

Run renderer dev server in a container:

docker compose up renderer-dev

Run headless Electron startup in a container:

docker compose up desktop-headless

Project Structure

gitpad/
├── src/
│   ├── components/
│   ├── editor/
│   ├── git/
│   ├── pages/
│   ├── search/
│   ├── settings/
│   ├── store/
│   └── terminal/
├── backend/
│   ├── commands/
│   ├── file-system/
│   └── git/
├── electron/
├── docs/
└── tests/

Screenshots

Screenshots will be added in a later update.

Docs

Roadmap

  • Plugin system
  • Collaboration
  • Cloud sync
  • AI-assisted notes