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 🙏

© 2024 – Pkg Stats / Ryan Hefner

mgct

v0.7.8

Published

MGCT - MaGiC Tool

Downloads

31

Readme

MGCT - MaGiC Tool

Codacy Badge

Magic that will help you with managing repositories.

Set of tools that helps to roll out and maintain GIT repositories of your project or company extremely fast.

Clone all projects from GIT to local

Create file config.json

[
  {
    "project": "React",
    "repo": "[email protected]:facebook/react.git",
    "path": "lib/react"
  }
]

Then run command in the folder where you have config.json

npx mgct create

Result: Projects that is listed in config.json will be cloned from GIT into folder ./projects

Update all projects from GIT to local

To update all projects with latest change - navigate to folder where config.json located:

npx mgct update

Show list of commits

npx mgct commits

Advanced

You can customize the location for projects:

npx mgct create --src=repos

Result: Projects that is listed in config.json will be cloned from GIT into specific folder ./repos

You can customize the config file for projects and source for projects to be cloned:

npx mgct create --src=repos --config=list.json

Copy/Paste for checking after deployment

# Step 1 - (Remove previous files)
rm -rf ~/Desktop/projects
rm -rf ~/Desktop/config.json
cd ~/Desktop
# Step 2 - (Generate Config)
echo "[{\"project\": \"Bootstrap\", \"repo\": \"[email protected]:twbs/bootstrap.git\", \"path\": \"bootstrap\"}]" > ./config.json
# Step 3 - (Optionally for cleaning npx cache)
npx clear-npx-cache
npx mgct create
# Step 4 - (Pull GIT projects)
npx mgct update
# Step 5 - (See commits list)
npx mgct commits

npx nx graph

In root folder for this project you can find config.json file. Use that. Navigate to folder in CLI