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 🙏

© 2025 – Pkg Stats / Ryan Hefner

codestrata-cli

v1.0.11

Published

Geological-themed Git CLI

Readme

codestrata-cli-test

=======

Codestrata CLI

A geological-themed Git CLI that transforms your version control experience. Instead of git commands, use intuitive geological terms to manage your code layers!

Installation

npm install -g codestrata-cli

Commands

| Codestrata Command | Git Equivalent | Description | |-------------------|----------------|-------------| | strata create-vault | git init | Initialize a new repository | | strata excavate | git status | Check repository status | | strata fossilize "message" | git commit | Save changes with a message | | strata stratum-shift branch-name | git branch | Create a new code layer (branch) | | strata connect-vault origin url | git remote add | Connect to a remote repository | | strata uplift origin main | git push | Push changes to remote | | strata unearth [remote] | git fetch | Fetch changes from remote |

Quick Start

# Create a new repository
strata create-vault

# Check status
strata excavate

# Commit changes
strata fossilize "Initial rock formation"

# Create a new branch
strata stratum-shift feature-layer

# Connect to GitHub
strata connect-vault origin https://github.com/username/repo.git

# Push your changes
strata uplift origin main

Why Geological Terms?

Just as geologists study Earth's history through rock layers, developers manage code through layers of changes:

  • Commits become "fossils" - preserved snapshots of your code
  • Branches become "strata" - different layers of development
  • Status checks become "excavations" - examining your current state
  • Pushing becomes "uplift" - elevating your code to remote repositories

Command Details

create-vault

Initializes a new git repository:

strata create-vault

excavate

Shows the current status of your repository:

strata excavate

fossilize

Creates a commit with your changes:

strata fossilize "Add new feature layer"

stratum-shift

Creates a new branch:

strata stratum-shift feature-name

connect-vault

Connects to a remote repository:

strata connect-vault origin https://github.com/username/repo.git

uplift

Pushes changes to the remote repository:

strata uplift origin main

unearth

Fetches changes from the remote repository:

strata unearth
# or
strata unearth origin

Requirements

  • Node.js >=14.0.0
  • Git installed and available in PATH

Contributing

Contributions are welcome! Feel free to:

  1. Create new stratum (strata stratum-shift feature/amazing-feature)
  2. Fossilize your changes (strata fossilize "Add amazing feature")
  3. Uplift to master (strata uplift origin main)
  4. Open a Pull Request

License

MIT

Support

If you encounter any issues:

  1. Check the command help with strata --help
  2. Use strata [command] --help for specific command details
  3. Open an issue on GitHub