
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@clientcord/clientcord.js
Advanced tools
Welcome to ClientCord.JS a small project for improving our coding skills. This is a wrapper for the discord API in NodeJS with comfort features.
Welcome to ClientCord.JS a small project for improving our coding skills. This is a wrapper for the discord API in NodeJS with comfort features.
client.send(channel_id, text)
Client.Send() Send a message to a specific channel.
client.disReply(message_object, text)
Client.disReply() Required a message object and will use the reply feature to respons to the message.
client.command({
name: "required",
run: () => {
//code
}
})
client.command({
name: "required",
reply: "Text to reply with."
})
Client.command() Create a new command structure and send it to the internalCommandHandler name is required, and you can pick between reply (text) or run (function). You can add any thing like category, description etc.
client.deleteMessage(message_id, channel_id)
Client.deleteMessage() Will delete a specific message.
client.react(channel_id, message_id, emoji)
Client.react() Will react with an emoji to a message (No custom emoji's supported yet)
client.status("[playing/listening] [text]")
client.status("[playing/listening] [text]", "[dnd/invisible/online/idle]")
Client.status() Will set the client status (Default online)
MessageObject.reply("text")
MessageObject.reply() Will send a message in the same channel as the MessageObject.
MessageObject.disReply("text")
MessageObject.disReply() will reply with the discord reply feature to a MessageObject.
MessageObject.delete();
MessageObject.delete() Will delete the MessageObject.
MessageObject.react("😀")
MessageObject.react() Will react with an emoji to a MessageObject.
client.guilds
client.guilds Array of all guilds.
client.members
client.members Array of all members.
client.internalCommandHandler
client.internalCommandHandler Array of all commands in JSON objects.
client.lastSentMessage[channel_id]
client.lastSentMessage[] Will give the last sent bot message in that channel.
client.conn...
client.conn... Raw websocket.
client.options.gateway
client.options.gateway Wrapper gateway URL
client.options.api
client.options.api Wrapper API URL
client.options.log
client.options.log Enable development logs for testing the wrapper.
client.properties.$os
client.properties.$os Type of OS used (Use linux or Android to switch between normal or phone)
client.properties.$browser
client.properties.$browser Browser Header
client.properties.$device
client.properties.$device Device header.
client.heartbeat.op
client.heartbeat.op Heartbeat Operation Code.
client.heartbeat.d
client.heartbeat.d Data header for heartbeat OP data.
client.on("Event", () => {
});
client.on() When an event is triggerd this wel triggered. Here is a full list of events:
let client = new Module.client("bot_token");
new Module.client() Create a new Bot Client
let embed = new Module.embed();
new Module.embed(); Create a new Rich embed object.
require('./node_modules/clientcord.js/src/extra/getAvatar.js').getAvatar(userid, avatar);
[EXTRA] GetAvatar() Get avatar of user
EmbedObject.setColor("HEX");
EmbedObject.setColor() Set color of an embed using hex color values.
EmbedObject.setTitle("Title");
EmbedObject.setTitle() Set title of embed
EmbedObject.setAuthorName("name");
EmbedObject.setAuthorName Set name of author field.
EmbedObject.setAuthorIcon("url");
EmbedObject.setAuthorIcon() Set icon of author field.
EmbedObject.setAuthorUrl("URL");
EmbedObject.setAuthorUrl() Set URL of author field.
EmbedObject.setDescription("text");
EmbedObject.setDescription() Set description of embed.
EmbedObject.setThumbnail("url")
EmbedObject.setThumbnail() set thumbnail of embed.
EmbedObject.setImage("url");
EmbedObject.setImage() Set image of embed.
EmbedObject.setTimestamp(new Date());
EmbedObject.setTimestamp() Set timestamp of embed.
EmbedObject.setFooterText("text");
EmbedObject.setFooterText() Set footer text of embed.
EmbedObject.setFooterIcon("url");
EmbedObject.setFooterIcon() Set footer icon of embed.
EmbedObject.addField("name", "value") //inline false
EmbedObject.addField("name", "value", true) //inline true
EmbedObject.addField() Add a field to embed.
EmbedObject.embed();
EmbedObject.embed
EmbedObject.embed() Return full JSON of embed to parse in a message.
const clientcord = require("clientcord.js");
const client = new clientcord.client("--- Bot Token ---");
client.on("ready", () => {
client.status(client.user.username, "dnd");
});
client.command({
name: "!ping",
description: "Ping pong",
reply: `Pong!`
});
client.command({
name: "!guilds",
description: "Get Guilds",
run: (message, args) => {
message.reply(client.guilds.cache.map(g => g.name).join("\n"))
}
});
client.command({
name: "!members",
description: "Get All Members",
run: (message, args) => {
//console.log(client.members.map(u => u.username).join("\n"));
message.reply(client.members.map(u => u.username).join("\n"))
}
});
client.command({
name: "!getGuild",
description: "Get Guild",
run: (message, args) => {
console.log(client.guilds.get("755457188914528317"));
}
});
client.command({
name: "!delete",
description: "Delete the command lol",
run: (message, args) => {
message.delete();
}
});
client.command({
name: "!embed",
description: "Embed test",
run: (message) => {
let embed = new clientcord.embed();
embed.setColor("#7289DA");
embed.setTitle("RICKROLLED.");
embed.setDescription("Lmfao");
embed.addField("Lol", "Lol", true);
embed.setTimestamp(new Date())
embed.setAuthorIcon("https://i.gifer.com/4KL.gif");
embed.setAuthorUrl("https://www.youtube.com/watch?v=dQw4w9WgXcQ&ab_channel=RickAstleyVEVO");
embed.setAuthorName("Test");
embed.setThumbnail("https://i.gifer.com/4KL.gif");
embed.setImage("https://i.gifer.com/4KL.gif");
message.reply(embed.embed);
}
});
client.command({
name: "!reply",
description: "Reply command",
run: (message, args) => {
if (!args[0]) {
let embed = new clientcord.embed();
embed.setTitle("Error!");
embed.setColor("#fc0303");
embed.setDescription("You need to use !reply [message]")
return message.reply(embed.embed);
}
message.disReply(args.join(" "));
}
})
client.command({
name: "!help",
description: "help command",
run: (message, args) => {
let embed = new clientcord.embed();
embed.setTitle("Help Menu");
embed.setColor("#7289da");
embed.setDescription("All commands of the bot");
client.internalCommandHandler.forEach((command, i) => {
embed.addField(command.name, command.description);
});
message.reply(embed.embed);
}
})
client.command({
name: "!react",
description: "react command",
run: (message, args) => {
message.react(`🎉`)
}
})
client.command({
name: "!reactOnBotMessage",
description: "React on a bot message",
run: async(message, args) => {
message.reply("Hello!")
setTimeout(() => {
client.lastSentMessage[message.channel_id].react("😀")
}, 250)
}
})
client.command({
name: "!deleteAfter3Seconds",
description: "Delete bot message after 3 seconds",
run: async(message, args) => {
message.reply("Hello!")
setTimeout(() => {
let lat = client.lastSentMessage[message.channel_id];
setTimeout(() => {
lat.delete();
}, 2750);
}, 250)
}
})
FAQs
Welcome to ClientCord.JS a small project for improving our coding skills. This is a wrapper for the discord API in NodeJS with comfort features.
The npm package @clientcord/clientcord.js receives a total of 0 weekly downloads. As such, @clientcord/clientcord.js popularity was classified as not popular.
We found that @clientcord/clientcord.js 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.