Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.
/ lgcord.js Public archive

A Nodejs Discord API wrapper. This is a small library that allows you to interact with Discord API to make discord bots

Notifications You must be signed in to change notification settings

tga098/lgcord.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LGcord.Js

A Nodejs Discord API wrapper. This is a small library that allows you to interact with Discord API to make discord bots

Installation

Nodejs 16.9.0 or higher is needed

npm install lgcord.js

Usage

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

More explained Documentation / Guide Available https://lgcordjs.logixdev.net

About

A Nodejs Discord API wrapper. This is a small library that allows you to interact with Discord API to make discord bots

Resources

Stars

Watchers

Forks

Packages

No packages published