# nerdcord

> a discord library made in typescript

Latest version **1.0.4** (published 2020-10-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install nerdcord
pnpm add nerdcord
yarn add nerdcord
bun add nerdcord
```

## 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.4 |
| Published | 2020-10-10 |
| First published | 2020-09-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Unpacked size | 92.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | NerdThatNoOneLikes |
| Maintainers | laggyraggy |

## Links

- npm: https://www.npmjs.com/package/nerdcord
- Repository: https://github.com/nerdthatnoonelikes/nerdcord
- Homepage: https://github.com/nerdthatnoonelikes/nerdcord#readme
- Issues: https://github.com/nerdthatnoonelikes/nerdcord/issues
- npm.io page: https://npm.io/package/nerdcord

## Dependencies (5)

- [ws](https://npm.io/package/ws.md) ^7.3.1
- [@types/ws](https://npm.io/package/@types/ws.md) ^7.2.6
- [node-fetch](https://npm.io/package/node-fetch.md) ^2.6.1
- [@types/node](https://npm.io/package/@types/node.md) ^14.6.4
- [@types/node-fetch](https://npm.io/package/@types/node-fetch.md) ^2.5.7

## Recent versions

- 1.0.4 (latest) — 2020-10-10
- 1.0.3 — 2020-10-10
- 1.0.2 — 2020-09-12
- 1.0.1 — 2020-09-12

## README

A basic discord library made in typescript
 	

* https://discord.gg/4Ee3uy3, Support server link
* https://www.npmjs.com/package/nerdcord

`npm i nerdcord`

example ping pong bot

```js
const Discord = require("nerdcord");

const Client = new Discord.client("token");

Client.login();

Client.on("ready", () => {
    console.log("ready")
})

Client.on("message", async (message) => {
    if (message.content === "?ping") {
        Client.createMessage("pong", message.channel_id)
    }
})

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