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

hackme44

v1.0.0

Published

A unified CLI to streamline full-stack development workflows from project initialization to Git automation and deployment

Readme

HackMe44

A unified Command Line Interface (CLI) built with Commander.js to streamline end to end development workflows from intializing project to deploying it for rapid development.

Table of Contents

Installation

Prerequisites: Node.js (v16+), npm, and Git.

Global Installation

npm install -g .
# Or from the project directory:
npm link

Local Usage

npx hackme44 <command>

Getting Started

Access the help system at any time:

hackme44 --help
# Or for a specific command:
hackme44 <command> --help

Core Features

  • Project Initialization: Quickly generate standardized frontend (React/Vite), backend (Node.js/Express), or full-stack project structures with automated Tailwind CSS configurations with just one command
  • Git Repository Management: Intialize repo and create a GitHub repo with a single command within the terminal.
  • Dependency Management: Choose the dependencies to install by using the search bar or drop-down menu
  • GitHub Integration: Monitor remote repositories for new commits by notifications in the terminal , synchronize forks automatically , and harvest commits across branches.
  • Advanced Git Operations: Perform interactive rebases to sanitize commit histories and manage cross-branch synchronization.
  • Vercel Deployment: Execute one-click deployments for frontend, backend, or full-stack environments through one command.

Command Reference

Basic Commands

| Command | Description | Example | | :--- | :--- | :--- | | greet | Simple greeting user test | hackme44 greet <name> | | project | Intialize a new Project (FronEnd / BackEnd / FrontEnd + BackEnd | hackme44 project <name> | | init-repo | Initialize Git and connect to remote and push the code | hackme44 init-repo <name> | | vercel | Deploy directly to Vercel | hackme44 vercel [name] |

Dependency & Integration Commands

| Command | Description | Example | | :--- | :--- | :--- | | add | Install packages (interactive or manual) | hackme44 add [packages...] [--dev] | | watch-commits | Monitor a GitHub repository for changes | hackme44 watch-commits <repo_url> | | rev | Reverse or modify a previous commit | hackme44 rev [branch] [--commits-back <count>] | | harvest | Move commits between branches | hackme44 harvest <sourceBranch> [start] [end] | | sync-fork | Sync a fork with upstream | hackme44 sync-fork <fork_url> [upstream_url] [--watch] |

Examples

1. Full Stack Hackathon Bootstrap

# Initialize full-stack project
hackme44 project my-awesome-app --frontandback
cd my-awesome-app

# Install frontend dependencies
cd FrontEnd
hackme44 add axios @tanstack/react-query lodash
cd ..

# Install backend dependencies
cd BackEnd
hackme44 add cors dotenv jsonwebtoken bcryptjs mongoose
cd ..

# Initialize Git & Deploy
hackme44 init-repo my-awesome-app [https://github.com/team/my-awesome-app.git](https://github.com/team/my-awesome-app.git)
hackme44 vercel my-awesome-app --frontandback --prod

2. Cross-Branch Commit Harvesting

# Harvest commits 2-4 from feature branch to main
hackme44 harvest feature 2 4 --target-branch main

Configuration

Set up environments using a .env file in your working directory:

GITHUB_TOKEN=ghp_your_token_here

Project Structure

Full-Stack Output Example:

project-name/
├── FrontEnd/
│   ├── src/
│   │   ├── App.jsx
│   │   ├── index.css
│   │   └── main.jsx
│   ├── index.html
│   ├── package.json
│   └── vite.config.js
├── BackEnd/
│   ├── src/
│   │   ├── controllers/
│   │   ├── models/
│   │   └── routes/
│   ├── index.js
│   └── package.json
├── .gitignore
└── README.md