
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
Make github issues about your nodejs errors!
npm install gh-error
# or
pnpm add gh-error
# or
yarn add gh-error
Pretty shrimple, one could say.
import { ErrorHandler } from "gh-error";
const handler = new ErrorHandler({
ghPat: process.env.GH_PAT, // GitHub personal access token (required)
// Optional: auto-detected from git if not provided
repoOwner: "your-username",
repoName: "your-repo",
});
// Bind to process errors (uncaughtException, unhandledRejection)
handler.bindToErrors();
// Or handle errors manually
try {
throw new Error("Something went wrong!");
} catch (e) {
await handler.handleError(e);
}
Set your GitHub PAT in your environment:
GH_PAT=ghp_your_token_here
When an error occurs, gh-error will:
Issues are tagged with automated-error and bug labels.
FAQs
Make them errors into github issues please
The npm package gh-error receives a total of 1 weekly downloads. As such, gh-error popularity was classified as not popular.
We found that gh-error demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.