
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.
github-projects
Advanced tools
A module that makes it easy to access Github projects data
Export your Github accessToken as an environment variable
export GITHUB_ACCESS_TOKEN=your_token
Then install
npm i github-projects
All examples below require that you require the Projects class
const github = require('github-projects');
const projects = new github.Projects(yourOrgName, yourProjectId);
Get an entire Project Board with all columns and cards (useful for building your own UI)
projects.getBoard(cb);
List your projects
projects.list((err, projects) => {
cb(err, projects);
})
Get Project By Name
projects.getByName(projectName, cb)
Get Project by Id
projects.getById(projectId, cb)
Get columns for a Project
projects.columns(project, cb);
Get Cards for a Column
projects.cardsForColumns(column, allIssues, cb);
All examples below require that you require the Cards class
const github = require('github-projects');
const cards = new github.Cards(yourOrgName, repoName);
Create a Card
issues.create({
title: 'A Title for the card',
column_id: columnId,
body: 'Card description',
assignees: ['You', 'me', 'Dupree'],
labels: ['bug']
}, cb);
All examples below require that you require the Issues class
const github = require('github-projects');
const issues = new github.Issues(yourOrgName, repoName);
List all Issues
issues.list(cb);
listAll (auto-paginates)
issues.listAll(cb);
Create an Issue
issues.create(issue, cb);
npm test
FAQs
A module that makes it easy to access Github projects data
The npm package github-projects receives a total of 5 weekly downloads. As such, github-projects popularity was classified as not popular.
We found that github-projects 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.