# discord-help-tools

> Module that will simplify your work on Discord.

Latest version **1.0.1** (published 2022-01-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install discord-help-tools
pnpm add discord-help-tools
yarn add discord-help-tools
bun add discord-help-tools
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2022-01-16 |
| First published | 2022-01-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Custy |
| Maintainers | aventadoria |
| Keywords | discord, discordjs, discord.js, discord.js help, discord.js help tools |

## Links

- npm: https://www.npmjs.com/package/discord-help-tools
- Issues: https://github.com/custyTR/discord-help-tools/issues
- npm.io page: https://npm.io/package/discord-help-tools

## Recent versions

- 1.0.1 (latest) — 2022-01-16
- 1.0.0 — 2022-01-16

## README

## About

discord-help-tools is a simple helpful module for developers.
```js
const Discord = require('discord.js');
const Client = new Discord.Client();
const helpTools = require('discord-help-tools');
helpTools(client)

client.on('ready', () => {
  console.log(`Logged in as ${client.user.tag}!`);
});

client.on('message', message => {
	if(message.content == '!members') {
	message.channel.send(`Server member count: ${helpTools.NumberToEmoji(message.guild.memberCount)}`)
	}
	if(message.content == '!reply') {
	helpTools.lineReply(message, 'Hello World!')
	}
})

client.login('token');
```

---
_Source: https://npm.io/package/discord-help-tools · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
