@castery/caster
v0.0.23
Published
π€π¬ Universal platform for creating multi bots!
Downloads
28
Maintainers
Readme
π€ Caster is a universal powerful Node.js module with open source code for creating multi platform bots!
| π Documentation | π¦ Modules | π€ Examples | |--------------------------|------------------------------------------------------|-------------------------------------------------------------|
Features
- Object-oriented
- Using modern development tools
Installation
Node.js 8.0.0 or newer is required
Yarn
Recommended, auto assembly
yarn add @castery/caster
NPM
npm install @castery/caster --save
Usage
import { Caster } from '@castery/caster';
const caster = new Caster();
/* Add platforms integrations */
caster.start()
.then(() => {
console.log('Caster started');
})
.catch(() => {
console.error('Caster started fail');
});