Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/rainydevzz/splashpad.js
- Owner: rainydevzz
- License: mit
- Created: 2023-02-04T23:50:59.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-26T00:27:05.000Z (almost 2 years ago)
- Last Synced: 2024-12-13T19:35:29.885Z (14 days ago)
- Topics: command-framework, discord, discordbot, nodejs, oceanic, typescript
- Language: TypeScript
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)