gpm

3.1.0 • Public • Published

gpm

$ gpm

Support me on Patreon Buy me a book PayPal Ask me anything Version Downloads Get help on Codementor

Buy Me A Coffee

npm + git = gpm - Install NPM packages and dependencies from git repositories.

☁️ Installation

You can install the package globally and use it as command line tool:

# Using npm 
npm install --global gpm
 
# Using yarn 
yarn global add gpm

Then, run gpm --help and see what the CLI tool can do.

$ gpm --help
Usage: gpm [options]

Options:
  -i, --input <name|git>                       The NPM package name or git url.
  -u, --url-type <type>                        The git url type to use (e.g. `https`, `ssh`).
  -t, --destination <path>                     Where to install the package.
  -n, --node module destination <folder name>  Name of the  node_module folder.
  -d, --depth <depth>                          The depth value. Default is Infinity.
  -h, --help                                   Displays this help.
  -v, --version                                Displays version information.

Examples:
  gpm -i git-stats # Installs git-stats and its dependencies from git repositories.
  gpm -i git@github.com:IonicaBizau/git-stats.git # Does the same, but providing the git url
  gpm -i . # install the local package dependencies

Documentation can be found at https://github.com/IonicaBizau/gpm

For example, if you want to install git-stats and its dependencies and subdependencies (recursively), do:

$ gpm -i git-stats

This will create the git-stats repository in the current working directory.

📋 Example

Here is an example how to use this package as library. To install it locally, as library, you can use npm install gpm (or yarn add gpm):

// Dependencies
var Gpm = require("gpm");
 
// Install uls and its Node modules from git
var pack = new Gpm("git@github.com:IonicaBizau/node-ul.git", {
 
    // Use https
    url_type: "https"
 
    // Where to install this stuff?
  , dest: __dirname
 
    // Clone git repositories for the 3 level depth in dependency tree
  , depth: 2
    // ul <- typpy
    //    <- deffy <- *typpy
    //
    // *–this will not be a git repository
});
 
// Start the install
pack.install(function (err, data) {
    console.log(err || data);
}, function (m) {
    console.log(m);
});

❓ Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. For bug reports and feature requests, open issues. 🐛
  3. For direct and quick help, you can use Codementor. 🚀

📝 Documentation

For full API reference, see the DOCUMENTATION.md file.

😋 How to contribute

Have an idea? Found a bug? See how to contribute.

💖 Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like 🚀

  • Buy me a book—I love books! I will remember you after years if you buy me one. 😁 📖

  • PayPal—You can make one-time donations via PayPal. I'll probably buy a coffee tea. 🍵

  • Support me on Patreon—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).

  • Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! ❤️

📜 License

MIT © Ionică Bizău

Readme

Keywords

Package Sidebar

Install

npm i gpm

Weekly Downloads

5

Version

3.1.0

License

MIT

Unpacked Size

23.9 kB

Total Files

5

Last publish

Collaborators

  • ionicabizau