
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.
git-bug-trace
Advanced tools
Powerful bug profiling and tracking library. Automatically creates github issues
Powerful bug profiling and tracking library. Automatically creates github issues
git-bug-trace is a simple library integrated with GitHub. It collects fatal errors caught on catch blocks at runtime and creates issues automatically to respective application repository
$ npm install git-bug-trace -g
or
$ yarn add git-bug-trace
Keep track of bugs that are encountered on runtime in almond production services.
// create a .env file with the following constants
let GIT_HUB_ACCESS_TOKEN,
APPLICATION_NAME,
OWNER,
GIT_HUB_REPOSITORY,
GIT_HUB_URL;
OWNER = "<Repository Owner>";
GIT_HUB_REPOSITORY = "<Your Repository>";
GIT_HUB_URL = "<Git Hub API base Url>";
GIT_HUB_ACCESS_TOKEN = "<token XXXXXXXXXXXXXXXXXXXXXXXXXXXX>";
APPLICATION_NAME = "<your application name>";
// init before usage
const almond = require("git-bug-trace");
// install and require .env configuration to enable you load theenvironment variables
require("dotenv").config();
This Module exposes the following functions which are helper functions to enable issues to be logged automatically to github
module.exports = {
gitHubEndpoints,
gitHubCreateIssue,
issueBody,
issueHeading,
gitHubGetIssues,
};
almond.gitHubCreateIssue(almond.issueHeading(almond.getCallerFile()),almond.issueBody('<Your Exception Message>','<Your Exception stack>'),<Configuration Object sample below >);
// Usage Example
const configs = {
token: process.env.GIT_HUB_ACCESS_TOKEN,
owner: process.env.OWNER,
repository: process.env.GIT_HUB_REPOSITORY,
appname: process.env.APPLICATION_NAME,
base_url: process.env.GIT_HUB_URL,
};
// Get your allowed endpoints
const endpoints = almond.gitHubEndpoints(token);
endpoints.then((res) => {
console.log(res.data);
});
// Create an issue from your runtime application
const issue = almond.gitHubCreateIssue(almond.issueHeading('GetUsers',configs.appname),almond.issueBody('Sample Exeption','application StackTrace'),configs);
issue.then((res) => {
console.log(res.data);
});
almond.gitHubGetIssues();
almond.gitHubEndpoints();
Copyright © 2020
Almond Smart Farm. Licensed under the MIT license._ 🅰🅻🅼🅾🅽🅳 _
FAQs
Powerful bug profiling and tracking library. Automatically creates github issues
The npm package git-bug-trace receives a total of 1 weekly downloads. As such, git-bug-trace popularity was classified as not popular.
We found that git-bug-trace 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.