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

gitlump

v0.0.4

Published

A command line tool to manage all git repositories of user or organization.

Downloads

1

Readme

gitlump Build Status

A command line tool to manage all repositories of GitHub user or organization.

Install

$ npm install -g gitlump

Usage

  Usage: gitlump [options] [command]


  Commands:

    create <type> <name>  Initialize with creating new directory.
    init <type> <name>    Initialize exisiting directory.
    clone                 Clone repositories.
    pull                  Pull repositories.
    exec                  Run git command.
    ls                    Show cloned repositories.
    ls-remote             Show remote repositories.

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

Initialize

User repositries

$ gitlump create user <name>

Origanization repositories

$ gitlump create org <name>

After command finished, gitlump creates new directory named GitHub user or organization name, and creates .gitlump.json file in the directory.

Use existing directory

$ cd your-directory
$ gitlump init <type> <name>

.gitlump.json

.gitlump.json is a config file of gitlump.

{
  "endpoint": "https://api.github.com/",
  "type": "user",
  "name": "nabeix",
  "defaultProtocol": "ssh",
  "useAccessToken": false,
  "repos": [],
  "ignore": [],
  "cloned": []
}
  • endpoint GitHub API Endpoint (default https://api.github.com/)
    • If use GitHub Enterprise: http(s)://hostname/api/v3/
  • type user|org
  • name Github user or organization name
  • defaultProtocol ssh|https (default ssh)
  • useAccessToken true|false|string (default false)
    • If set true, read an access token from the environment variable GITLUMP_ACCESS_TOKEN.
    • If set an environment variable name, read an access token from the variable.
  • repos A list of repository specific settings (default blank)
    • Example: [{"name": "my-repo", "protocol": "https", "directory": "my-repo-directory"}]
      • name repository name
      • protocol (optional) used instead of defaultProtocol
      • directory (optional) clone directory name
  • ignore A list of repository names to be ignored (default blank)
  • cloned A list of cloned repository names (updated automatically by gitlump clone)

Clone

$ gitlump clone

gitlump clone automatically clones all repositories.

Pull

$ gitlump pull

gitlump pull runs git pull command in all repository directories.

This is a shorthand of gitlump exec pull.

Other Git commands

Almost all git commands are available after gitlump exec.

The followings are examples:

$ gitlump exec status
$ gitlump exec checkout master
$ gitlump exec commit -m "update"

Access token

An access token is needed if you have private repositories.

To use access token, set useAccessToken in .gitlump.json to true.

And set your access token to the environment variable GITLUMP_ACCESS_TOKEN.

export GITLUMP_ACCESS_TOKEN=your-access-token

If set the token to other environment variables:

"useAccessToken": "MY_TOKEN_VARIABLE_NAME"
export MY_TOKEN_VARIABLE_NAME=your-access-token

Contribution

  1. Fork it ( http://github.com/nabeix/gitlump )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

MIT