🤖💬 Universal platform for creating multi bots!


Keywords
universal, platform, caster, multi, bot
License
MIT
Install
npm install @castery/caster@0.0.11

Documentation

Build Status NPM version NPM downloads

🤖 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');
});