1.2.0 • Published 2 years ago

house-chat v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

House Chat JS

house-chat-js is the official JavaScript client for House Studio, a service for building chat applications.

Installation

Install with NPM

npm install house-chat

Install with Yarn

yarn add house-chat

Usage

create client

import { HouseChat } from 'house-chat';

const loginParams = {
  login_random_secret: 'YOUR_LOGIN_RANDOM_SECRET',
  signature: 'YOUR_SIGNATURE',
  wallet_address: 'YOUR_WALLTE_ADDRESS',
  appid: 'YOUR_APPID',
};

// create client
const client = HouseChat.getInstance(loginParams);
// or
const client = HouseChat.getInstance('YOUR_ACCESS_TOKEN');

create room

const room = client.createRoom();

create message

const message = client.createMessage();

create user

const user = client.createUser();

utils function

import { login, register, getLoginRandomSecret } from 'house-chat';

const data = await register();

const data = await getLoginRandomSecret();

const data = await login();
1.2.0

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago