Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@fearfuldev/fluxpoint
Advanced tools
npm i @fearfuldev/fluxpoint
const fluxpoint = require("@fearfuldev/fluxpoint");
const client = new fluxpoint.Client("token_here");
Gallery
client.gallery("album_id").then((img) => {
// ...
});
Image Generation (Welcome)
Update Planned
Plans:add welcome builder
const Discord = require("discord.js");
const fluxpoint = require("@fearfuldev/fluxpoint");
const client = new fluxpoint.Client("token_here");
const welcomeBuilder = await client.welcome(
`username`, // Name of the user
`avatarURL`, // Avatar image URL
`backgroundColor`, // Hex Color (Background Color, Hex#)
`memberCount`, // Amount of guild members ("Member #1")
`banner`, // Background image | List of banners: (love mountain purplewave rainbow space sunset swamp waifubot wave)
`welcomeTextColor`, // Color of the "Welcome" text (Hex #)
`usernameColor`, // Color of the username (Hex #)
`memberColor` // Color of the memberCount text (Hex #)
);
let attatchment = new Discord.MessageAttatchment(welcomeBuild, "welcome.jpg");
message.channel.send(attatchment);
Image Generation (Custom) [Donator Only]
https://docs.fluxpoint.dev/gen/custom
const Discord = require("discord.js");
const fluxpoint = require("@fearfuldev/fluxpoint");
const client = new fluxpoint.Client("token_here");
const customBuilder = new client.CustomBuilder();
builder.setBase({
type: "bitmap",
width: 2000,
height: 2000,
color: "#7289da",
});
builder.addImage({
type: "bitmap",
round: 160,
x: 20,
y: 240,
width: 1220,
height: 360,
color: "0,0,0,80",
});
builder.addImage({
type: "url",
url: "https://img.fluxpoint.dev/thm/1422436083957760.jpg",
width: 2000,
height: 2000,
});
builder.addText({
text: "Hello",
color: "black",
size: 120,
x: 600,
y: 1060,
});
let build = await client.generateCustom(builder.buildBody());
let attatchment = new Discord.MessageAttatchment(build, "welcome.jpg");
message.channel.send(attatchment);
NSFW
you are responsible for locking this to nsfw channels.
Types:azurlane
,nekopara
,lewd
client.nsfw("image_type").then((img) => {
// ...
});
List (Welcome Icons)
const fluxpoint = require("@fearfuldev/fluxpoint");
const client = new fluxpoint.Client("token_here");
await client.listWelcomeIcons().then((res) => {
message.channel.send(`\`\`\`json\n${res.list.join("\n")}\`\`\``);
});
List (Welcome Banners)
const fluxpoint = require("@fearfuldev/fluxpoint");
const client = new fluxpoint.Client("token_here");
await client.listWelcomeBanners().then((res) => {
message.channel.send(`\`\`\`json\n${res.list.join("\n")}\`\`\``);
});
Embeds (Gallery)
client.gallery("album_id").then((img) => {
let embed = new Discord.MessageEmbed()
.setTitle("Embed Title")
.setDescription("")
.setImage(img.file); // img url
message.channel.send(embed);
});
👤 ~ Fearful ~#2000
Discord
FAQs
Interact with the fluxpoint.dev api via Discord.js
The npm package @fearfuldev/fluxpoint receives a total of 0 weekly downloads. As such, @fearfuldev/fluxpoint popularity was classified as not popular.
We found that @fearfuldev/fluxpoint 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.