Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
GitCord allows you to send the github feeds at your discord server without having any issue.
GitCord allows you to send the github feeds to your discord server without having any issue.
Soon
Not Out
const Github = require("gitcord")
const github = new Github("CTK-WARRIOR", {
repositories: ["Discord-Bot-For-Starters", "canvas-senpai"]
})
github.setup()
github.on('newEvent', (json) => {
//do something
})
Basically you have to add the array of repositories name in options or subscribe repository in order to get feeds related to that repository but we have implemented very usefull feauture for you to get rid of these long chain process.
const Github = require("gitcord")
const github = new Github("CTK-WARRIOR", { token: "Your Super Cool Github Token", gitall: true }) //will throw error if user have more than 50 repo
github.setup()
github.on('newEvent', (json) => {
//do something
})
const Github = require("gitcord")
const Discord = require("discord.js")
const client = new Discord.Client();
const github = new Github("CTK-WARRIOR", { token: "Your Super Cool Github Token", gitall: true })
github.setup()
client.on("ready", () => {
console.log("Connected to the discord, now ready for fight :D")
})
github.on("newEvent", (embed) => {
client.channels.cache.get("CHANNEL ID").send({embed})
})
client.login("YOUR DISCORD TOKEN")
FAQs
GitCord allows you to send the github feeds at your discord server without having any issue.
The npm package gitcord receives a total of 0 weekly downloads. As such, gitcord popularity was classified as not popular.
We found that gitcord 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.