This package has been deprecated

Author message:

Package no longer supported/maintained

lgcord.js
TypeScript icon, indicating that this package has built-in type declarations

2.1.0 • Public • Published

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

Documentation

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

/lgcord.js/

    Package Sidebar

    Install

    npm i lgcord.js

    Weekly Downloads

    1

    Version

    2.1.0

    License

    MIT

    Unpacked Size

    149 kB

    Total Files

    146

    Last publish

    Collaborators

    • mrbeastprolevel
    • tga098
    • tomato6966