2.0.0 • Published 1 year ago

discord-console-logger v2.0.0

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

Work in progress, if you find any bugs please report them.

Docs are available at: https://lucaslah.github.io/discord-console-logger/ \ You can find examples below and in the example folder.

Example

import { DiscordConsoleLogger, Embed, Colors } from "discord-console-logger";

const logger = new DiscordConsoleLogger({
    id: "webhook id",
    token: "webhook token"
});

await logger.log("Hello World");

await logger.log(new Embed({
    title: "Hello World",
    description: "test",
    footer: {
        text: "footer, text"
    },
}));

await logger.info({ message: "hello world", description: "info" });
await logger.warn({ message: "hello world", description: "warn" });
await logger.error({ message: "hello world", description: "error" });
await logger.debug({ message: "hello world", description: "debug" });

await logger.info({ message: "hello world", description: "info" }, {
    color: Colors.DEFAULT,
    footer: { text: "hello text" }
});

Building

You will need:

  • Node.js
  • Yarn/Npm
  • Typescript (included)

To build the library run the following commands:

# first clone the repo to your local device
$ git clone https://github.com/Lucaslah/discord-console-logger.git
# next change to the directory you just cloned
$ cd discord-console-logger
# install dependencies
$ yarn install # or with npm: npm install
# next build the library
$ yarn build # or with npm: npm run build
# if you want to build the docs
$ yarn docs # or with npm: npm run docs

Docs output will be: ./docs\ Javascript output will be: ./dist

2.0.0

1 year ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago