https://github.com/keiryojs/enjo
📦️ a feature-rich and flexible bot framework for neocord.
https://github.com/keiryojs/enjo
discord framework neocord typescript
Last synced: 4 months ago
JSON representation
📦️ a feature-rich and flexible bot framework for neocord.
- Host: GitHub
- URL: https://github.com/keiryojs/enjo
- Owner: KeiryoJS
- Created: 2020-10-01T01:35:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-18T20:09:25.000Z (about 3 years ago)
- Last Synced: 2025-02-27T03:15:48.334Z (about 1 year ago)
- Topics: discord, framework, neocord, typescript
- Language: TypeScript
- Homepage:
- Size: 83 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Neocord: Enjo
> The official bot framework for the neocord discord library.
###### Disclaimer
Enjo is currently in alpha.
Not all features are currently implemented... this should not be used in production.
## Installation and Usage.
As of **09/30/2020** `day/month/year`, Enjo will only support **node.js v12** and above.
```shell script
yarn add @neocord/enjo
```
###### Basic Usage
```ts
import { Enjo, Commands, Listeners } from "enjo";
class MyClient extends Enjo {
public commands = new Commands(this);
public listeners = new Listeners(this);
}
const client = new MyClient();
client.commands.add({
id: "ping",
triggers: ["ping"]
}, (ctx) => {
ctx.reply("**Pong!**");
});
```
## Links
- **Support Server**: [discord.gg/5WD9KhF](https://discord.gg/5WD9KhF)
- **Github**:
- **NPM**:
---
Licensed under the MIT License.