1.1.2 • Published 1 year ago

agora-rtm-react v1.1.2

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

Agora RTM SDK React Wrapper

A thin react.js wrapper for Agora RTM SDK.

This wrapper supports React >= v16.8

Install

npm install agora-rtm-react

Usage

import React from 'react'
import { createChannel, createClient, RtmMessage } from 'agora-rtm-react'

const useClient = createClient('<Agora App ID>');
const useChannel = createChannel('channelName')

const App = () => {
  const client = useClient();
  const testChannel = useChannel(client)

  const login = async () => {
    await client.login({ uid: 'userId' })
    await testChannel.join()
  }
  
  const sendMsg = async (text: string) => {
    const message = client.createMessage({ text, messageType: 'TEXT' })
    await testChannel.sendMessage(message)
  }
...
}

Example

A chat example using the wrapper can be found in ./example

Docs

You can view the wrapper docs, Web SDK docs and the SDK API Reference