A wrapper for Agora RTM Web SDK to use with react/reactjs
npm install agora-rtm-reactA thin react.js wrapper for Agora RTM SDK.
This wrapper supports React >= v16.8
bash
npm install agora-rtm-react
`Usage
`tsx
import React from 'react'
import { createChannel, createClient, RtmMessage } from 'agora-rtm-react'const useClient = createClient('');
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`