1.0.7 • Published 6 years ago

curseapp.js v1.0.7

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

ARCHIVED

The Curse Messenger has since shut down, hence this project will likewise be deprecated and archived.

curseapp.js

curseapp.js is a 100% promise based, Object-oriented wrapper for the CurseApp API.

curseapp.js on npm

npm npm

Bye bye Twitch.

Quickly get started with curseapp.js:

npm install curseapp.js

Here's a simple script to get you started:

const Curse = require('curseapp.js');
const app = new Curse.Client();

app.on('connected', () => {
    console.log(`Connected as ${app.user.name}`);
});

app.on('dropped', () => {
    console.log('Connection dropped!');
});

app.on('message', (msg) => {
    if (msg.content=='ping')
        msg.reply('pong!');
});
1.0.7

6 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago