A Nodejs Discord API wrapper. This is a small library that allows you to interact with Discord API to make discord bots
Nodejs 16.9.0 or higher is needed
npm install lgcord.js
Make a basic bot using lgcord.js
const { Client, INTENTS } = require("lgcord.js")
const client = new Client([
INTENTS.GUILDS, INTENTS.GUILD_MESSAGES, INTENTS.GUILD_MESSAGE_REACTIONS
])
client.on('ready', ready => {
console.log(`Logged in as ${ready.user.username}`);
});
client.login("bot token here");
More explained Documentation / Guide Available https://lgcordjs.logixdev.net