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

gexra

v1.0.7

Published

Gexra - A modern version control system with CLI and web interface

Downloads

802

Readme

Gexra CLI

A modern version control system with CLI. Built for the cloud.

Main Features

🔹 Add & Stage

Stage files with partial path:

gexra add .                    # Stage all files
gexra add file.ts src/         # Stage specific files/folders
gexra add -p src              # Stage only src/ folder
gexra status                  # View staged vs unstaged
gexra reset file.ts            # Unstage a file

🔹 Commit

Create commits with optional path filter:

gexra commit -m "Add login"       # Full commit
gexra commit -m "Update" -p src  # Partial commit (only src/)

🔹 Push & Pull

Sync with remote, optionally partial:

gexra push origin main            # Full push
gexra push origin main -p src    # Partial push (only src/)
gexra pull origin main           # Full pull
gexra pull origin main -p src    # Partial pull (only src/)

🔹 Clone

Clone with partial path:

gexra clone https://stack-vault-three.vercel.app/api/repos/user/repo
gexra clone https://stack-vault-three.vercel.app/api/repos/user/repo --path src

🔹 Full Examples

# Clone only frontend
gexra clone https://stack-vault-three.vercel.app/api/repos/user/repo --path web

# Work on API only  
gexra add -p api
gexra commit -m "Update API" -p api
gexra push origin main -p api

# Pull only web changes
gexra pull origin main -p web

🔹 Remote Configuration

Connect to your server:

gexra remote add origin https://stack-vault-three.vercel.app

🔹 Authentication

Login to access private repositories:

gexra register username email password --url https://stack-vault-three.vercel.app
gexra login email password --url https://stack-vault-three.vercel.app

Installation

From npm (Published Package)

npm install -g gexra
gexra --help

Or build locally:

git clone https://github.com/anomalyco/stackvault.git
cd stackvault/cli
npm install
npm run build
npm link

Now run gexra anywhere:

gexra init
gexra add .
gexra commit -m "Initial commit"

From Source

git clone https://github.com/anomalyco/stackvault.git
cd stackvault/cli
npm install
npm run build
npm link

Now run gexra anywhere:

gexra init
gexra add .
gexra commit -m "Initial commit"

Quick Start

# 1. Initialize repository
gexra init

# 2. Add files
gexra add .

# 3. Commit
gexra commit -m "Initial commit"

# 4. Connect to server
gexra remote add origin https://stack-vault-three.vercel.app
gexra login [email protected] password --url https://stack-vault-three.vercel.app

# 5. Push
gexra push origin main

All Commands

| Command | Description | |---------|-------------| | gexra init | Initialize repository | | gexra add [files] | Stage files | | gexra reset [files] | Unstage files | | gexra status | Show working tree status | | gexra commit -m "msg" | Create commit | | gexra log | View commit history | | gexra remote add <name> <url> | Add remote | | gexra push [remote] [branch] | Push to remote | | gexra pull [remote] [branch] | Pull from remote | | gexra clone <url> | Clone repository | | gexra login <email> <pass> | Login | | gexra register <user> <email> <pass> | Register |

Options

gexra add --help
gexra commit --help
gexra clone --path src --help   # Partial clone

Server URL Configuration

When deploying to Vercel:

gexra remote add origin https://stack-vault-three.vercel.app

Note: Use the base URL only (no /api path).

Frontend Playground

You can view your code in the hosted frontend playground here:

https://stack-vault-ta7m.vercel.app/

Development

cd cli
npm install
npm run build    # Build TypeScript
npm start       # Run CLI

License

MIT