2.1.0 • Published 1 year ago

lgcord.js v2.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

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

Documentation

Documentation avaiable at https://lgcordjs.logixdev.net

1.0.0

2 years ago

2.1.0

1 year ago

0.6.3

2 years ago

0.6.0

2 years ago

0.5.1

2 years ago

0.5.0

2 years ago

0.4.0

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.35

2 years ago