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

repocore-cli

v1.0.9

Published

Git-inspired Version Control CLI

Readme

RepoCore CLI

A Git-inspired Version Control CLI for the RepoCore Cloud Repository Platform.

RepoCore CLI enables developers to manage repositories directly from the terminal, including repository initialization, staging files, creating commits, connecting remotes, pushing code to the cloud, pulling updates, and cloning repositories.


Features

  • Initialize repositories locally
  • Stage files for commits
  • Create commit snapshots
  • Push commits to RepoCore Cloud
  • Pull repository updates
  • Clone repositories
  • Configure remote repositories
  • Repository status tracking
  • Global authentication

Installation

Install globally using npm:

npm install -g repocore-cli

Verify installation:

repocore --help

Login

Authenticate your RepoCore account:

repocore login your_email your_password

Example:

repocore login [email protected] MyPassword123

Authentication is stored securely and reused across all repositories.


Quick Start

1. Initialize Repository

repocore init

2. Add Files

Add a file:

repocore add file_name

Add a folder:

repocore add folder_name

Add all files:

repocore add .

3. Commit Changes

repocore commit "Initial commit"

Example:

repocore commit "Added authentication system"

4. Connect Remote Repository

repocore remote repocore://username/repository

Example:

repocore remote repocore://kunj/myproject

5. Push Repository

repocore push

Uploads all unpushed commits to RepoCore Cloud.


6. Pull Changes

Pull latest commit:

repocore pull

Pull specific commit:

repocore pull <commitHash>

Example:

repocore pull a01f5f33

7. Clone Repository

repocore clone repocore://username/repository

Example:

repocore clone repocore://kunj/sample-project

Commands

| Command | Description | |----------|------------| | repocore init | Initialize a repository | | repocore add <file> | Stage a file | | repocore add <folder> | Stage a folder | | repocore add . | Stage all files | | repocore commit "<message>" | Create a commit | | repocore push | Push commits to cloud | | repocore pull | Pull latest changes | | repocore pull <commithash> | Pull specific commit | | repocore clone <url> | Clone repository | | repocore remote <url> | Configure remote | | repocore remote-info | Show remote details | | repocore status | Show repository status | | repocore login <email> <password> | Login to RepoCore | | repocore guide | Show workflow guide | | repocore --help | Show help menu |


Repository URL Format

RepoCore uses custom repository URLs:

repocore://username/repository

Example:

repocore://kunj/backend-api

Typical Workflow

repocore login email password

repocore init

repocore add .

repocore commit "Initial commit"

repocore remote repocore://username/repository

repocore push

Cloud Integration

RepoCore CLI communicates with:

  • RepoCore Backend APIs
  • MongoDB Atlas
  • AWS S3 Storage

All repository files are securely stored in cloud infrastructure while preserving local workflow.


Security

RepoCore CLI includes:

  • JWT Authentication
  • Repository Ownership Validation
  • Protected Private Repositories
  • Secure API Communication

Troubleshooting

Login Failed

Verify credentials:

repocore login email password

Push Access Denied

Ensure:

  • You are logged in as repository owner
  • Remote repository is configured correctly

Check:

repocore remote-info

Repository Not Initialized

Run:

repocore init

before using repository commands.


Remote Not Configured

Configure remote:

repocore remote repocore://username/repository

Documentation

Full web documentation is available on the RepoCore platform.

Website Link: https://repocore-p0nu.onrender.com/


Author

Kunj Patel

GitHub: https://github.com/kunjpatel177