Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rainydevzz/splashpad.js

Lightweight Client framework for Oceanic.
https://github.com/rainydevzz/splashpad.js

command-framework discord discordbot nodejs oceanic typescript

Last synced: 2 days ago
JSON representation

Lightweight Client framework for Oceanic.

Awesome Lists containing this project

README

        

# splashpad.js

**A lightweight command framework for Oceanic.**

#### Quick Example

```js
const { SplashpadClient } = require('splashpad.js');

const bot = new SplashpadClient({auth: "Bot TOKEN"});

bot.subscribe({
name: 'ready',
run: async () => { console.log('up and running!'); }
});

bot.initialize();
```

More examples can be found in the [examples](https://github.com/laserzz/splashpad.js/tree/master/examples) folder.

#### Resources

[NPM Package](https://www.npmjs.com/package/splashpad.js)\
[Oceanic](https://github.com/OceanicJS/Oceanic)\
[Source](https://github.com/laserzz/splashpad.js)\
[Discord Server](https://discord.gg/Afw5XYpf8k)