
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
$ gpmnpm + git = gpm - Install NPM packages and dependencies from git repositories.
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.
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);
});
There are few ways to get help:
For full API reference, see the DOCUMENTATION.md file.
Have an idea? Found a bug? See how to contribute.
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:
—I love books! I will remember you after years if you buy me one. :grin: :book:
—You can make one-time donations via PayPal. I'll probably buy a
coffee tea. :tea:
—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:
FAQs
npm + git = gpm - Install NPM packages and dependencies from git repositories.
The npm package gpm receives a total of 9 weekly downloads. As such, gpm popularity was classified as not popular.
We found that gpm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.