
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.
Quick summary and informations about a git rep returning a js-json object.
originally based on git-info by @michalbe
npm i giti -g
then either javascript:
var gi = require('giti');
// First argument of the function can be a String
gi('name', function(err, result) {
console.log(result); // { name: name-of-the-repo }
});
// Or Array of Strings
gi(['name', 'author'], function(err, result) {
console.log(result); // { name: name-of-the-repo,
// author: author of the repo }
});
// or nothing and we run all commands
gi(function(err, result) {
console.log(result);
});
or cli:
giti
{ sha: '962906a2ad46d6d40e40635baf0ec8f0a832e95b',
shaShort: '962906a',
branches: [ 'master', ' sha' ],
branch: 'master',
repository: 'git@github.com:scherler/git-info.git',
authors:
[ 'Michal Budzynski <michal@virtualdesign.pl>',
'Michał Budzyński <michal@virtualdesign.pl>',
'Thorsten Scherler <scherler@gmail.com>' ],
author: 'Thorsten Scherler <scherler@gmail.com>',
authorDateRelative: '9 hours ago',
authorDate: 'Thu Apr 28 16:08:09 2016 +0200',
name: 'git-info',
subject: '[master] do not throw an error but call the callback with it as a normal person would do. Doh' }
giti name author branches
{ author: 'Thorsten Scherler <scherler@gmail.com>',
name: 'git-info',
branches: [ 'master', ' sha' ] }
Supported commands:
author - last author of the repoauthors - list of all the authorsauthorDate - date of last commitauthorDateRelative - date of last commitname - name of the repositoryrepository - address of the repobranch - current branchbranches - all the branches in the reposubject - the message of the last commitFAQs
Quick summary and informations about a git rep returning a js-json object.
The npm package giti receives a total of 279 weekly downloads. As such, giti popularity was classified as not popular.
We found that giti demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.