fedwave-chat-client
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

fedwave-chat-client

Basic API client for [fedwave] chat. Provides minimal functionality.

Install with:

npm install fedwave-chat-client

Usage

import { FedwaveChat } from 'fedwave-chat-client';

const fedwaveChat = new FedwaveChat();

/* NOTE: These are the default implementations */

// 'ms' is an array of message objects delivered by the server
fedwaveChat.rcvMessageBulk = ms => {
  for( const m of ms ) {
    console.log( m.message );
  }
};

// Global chat setting
fedwaveChat.global = true;

// Connects to chat, to the specified room, with the token
// Note: the token cannot be changed after init()
fedwaveChat.connect( 'myroom', 'chat-token', 'fedwavechatserverurl' );

fedwaveChat.sendMessage( 'Hello, world!' );
fedwaveChat.room = 'global';
fedwaveChat.sendMessage( 'Hi, global' );

fedwaveChat.sendMessage({
  message: 'Hello, all',
  channel: 'markpugner',
  global: false,
  showBadge: true
});

The API is unstable because Fedwave itself is unstable. src/api.ts is entirely JSDoc annotated, so go there for documentation.

Package Sidebar

Install

npm i fedwave-chat-client

Weekly Downloads

0

Version

0.0.2

License

LGPL-2.0

Unpacked Size

193 kB

Total Files

19

Last publish

Collaborators

  • misterupkeep