Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
A node library to interact with the GitHub issues API
const ghissues = require('ghissues')
, authOptions = { user: 'rvagg', token: '24d5dee258c64aef38a66c0c5eca459c379901c2' }
// list all issues in a repo
ghissues.list(authOptions, 'rvagg', 'jsonist', function (err, issuelist) {
// Array of issues data for 'rvagg/jsonist'
console.log(issuelist)
})
// get issue data by number (not internal GitHub id)
ghissues.get(authOptions, 'rvagg', 'nan', 123, function (err, issue) {
// object containing full issue #123
console.log(issue)
})
// create an issue
var data = {
title : 'New issue bro'
, body : 'Pretty **slick** `markdown`'
}
ghissues.create(authOptions, 'rvagg', 'jsonist', data, function (err, issue) {
// data for new issue
console.log(issue)
})
// list all comments in an issue
ghissues.listComments(authOptions, 'rvagg', 'jsonist', 47, function (err, commentlist) {
// Array of comment data for 'rvagg/jsonist#47'
console.log(commentlist)
})
// create a comment
var body = 'Whoa dude, this is awesomesauce!! :+1:'
ghissues.createComment(authOptions, 'rvagg', 'jsonist', 101, body, function (err, issue) {
// data for new comment in 'rvagg/jsonist#101'
console.log(issue)
})
The auth data is compatible with ghauth so you can just connect them together to make a simple command-line application:
const ghauth = require('ghauth')
, ghissues = require('ghissues')
, authOptions = {
configName : 'issue-lister'
, scopes : [ 'user' ]
}
ghauth(authOptions, function (err, authData) {
ghissues.list(authData, 'rvagg', 'node-levelup', function (err, list) {
console.log('Issues in rvagg/node-levelup:')
list.forEach(function (i) {
console.log('#%s: %s', i.number, i.title)
})
})
})
ghissues is Copyright (c) 2014 Rod Vagg @rvagg and licensed under the MIT licence. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.
FAQs
Interact with the GitHub users API
We found that ghissues demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.