# nekocord

> A simplistic object-oriented discord.js framework

Latest version **0.0.1** (published 2020-04-21) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2020-04-21 |
| First published | 2020-04-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | 12.x |
| Dependencies | 3 |
| Unpacked size | 2.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | luxluxdev |
| Maintainers | luxluxdev |
| Keywords | nekocord, discord.js, discord, luxluxdev, nekuwu |

## Links

- npm: https://www.npmjs.com/package/nekocord
- npm.io page: https://npm.io/package/nekocord

## Dependencies (3)

- [lowdb](https://npm.io/package/lowdb.md) ^1.0.0
- [discord.js](https://npm.io/package/discord.js.md) ^12.2.0
- [require-all](https://npm.io/package/require-all.md) ^3.0.0

## Recent versions

- 0.0.1 (latest) — 2020-04-21

## README

## Nekocord

A simplistic object-oriented discord.js v12 framework. **Work in Progress**.

## Example

Initialization
```js
import Nekocord from "nekocord";

const neko = new Nekocord.Client({
  token: "token",
  prefix: "."
});

neko.login();
```

Command
```js
import {Command} from "nekocord";

export default new Command({
  name: "cake",
  aliases: ["celebrate", "woohoo"],
  syntax: "<@target> [+reason]",
  usage: "@user#1234 you're awesome",
  description: "gift someone a cake",
  visible: false,
},
function (message) {
  let {target, reason} = message.getArguments();
  message.channel.send(`${target}, ${message.author} gifted you a cake because ${reason}`);
});
```

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