New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

gpm

Package Overview
Dependencies
Maintainers
0
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gpm

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

latest
Source
npmnpm
Version
3.1.1
Version published
Weekly downloads
9
28.57%
Maintainers
0
Weekly downloads
 
Created
Source

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.

:cloud: 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.

:clipboard: 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);
});

:question: Get Help

There are few ways to get help:

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

:memo: Documentation

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

:yum: How to contribute

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

:sparkling_heart: 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 :rocket:

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

  • PayPal—You can make one-time donations via PayPal. I'll probably buy a coffee tea. :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! :heart:

:scroll: License

MIT © Ionică Bizău

Keywords

git

FAQs

Package last updated on 13 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts