Socket
Socket
Sign inDemoInstall

@fearfuldev/fluxpoint

Package Overview
Dependencies
15
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @fearfuldev/fluxpoint

Interact with the fluxpoint.dev api via Discord.js


Version published
Maintainers
1
Created

Readme

Source

Welcome to Fluxpoint.js 👋

downloads
Fluxpoint is a private api, apply for access here

npm i @fearfuldev/fluxpoint

Get Started

const fluxpoint = require("@fearfuldev/fluxpoint");
const client = new fluxpoint.Client("token_here");

Supported API Interactions

Gallery

client.gallery("album_id").then((img) => {
  // ...
});

Image Generation (Welcome)

const Discord = require("discord.js");
const fluxpoint = require("@fearfuldev/fluxpoint");
const client = new fluxpoint.Client("token_here");

const builder = new Client.WelcomeBuilder();
// Required
// Replace TYPE with one of the types:
// ICONS: cat, chika, dog, dragon, neko, nyancat, pepe, pikachu, senko, shrek
// BANNERS: love, mountain, purplewave, rainbow, space, sunset, swamp, waifubot, wave
builder.setUser('User#0000');
builder.setAvatar('user_avatar_Url');
builder.setBackgroundColor("#000"); 
builder.setMemberCount(`Member #1`) // You can use guild.memberCount for this.
builder.setIcon(client.icons.TYPE); 
builder.setBanner(client.banners.TYPE);
// Optional
builder.setWelcomeColor('#000'); // Hex decimal for the color of the "welcome" text
builder.setUsernameColor('#000'); // Same as welcomeColor but for the username
builder.setMembersColor('#000'); // Hex decimal color for the memberCount text

let build = await client.genWelcome(builder.buildBody());

let attatchment = new Discord.MessageAttatchment(build, "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 builder = 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.genCustom(builder.buildBody());

let attatchment = new Discord.MessageAttatchment(build, "custom.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")}\`\`\``);
});

🚀 Usage Example(s)

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);
});

Author

👤 ~ Fearful ~#2000

  • Contact me here:
    • Discord

Keywords

FAQs

Last updated on 18 Jul 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc