@openim/client-sdk
Version:
JavaScript/TypeScript Client SDK for OpenIM
128 lines (84 loc) โข 5.04 kB
Markdown
# JavaScript/TypeScript Client SDK for OpenIM ๐จโ๐ป๐ฌ
Use this SDK to add instant messaging capabilities to your application. By connecting to a self-hosted [OpenIM](https://www.openim.io/) server, you can quickly integrate instant messaging capabilities into your app with just a few lines of code.
`@openim/client-sdk` is a pure javascript library. It doesn't store any information inside browser, `@openim/client-sdk` and `@openim/wasm-client-sdk`'s interfaces are completely the same. Without modifying any code, your website can run in miniProgram.
## Documentation ๐
Visit [https://docs.openim.io/](https://docs.openim.io/) for detailed documentation and guides.
For the SDK reference, see [https://docs.openim.io/sdks/quickstart/miniProgram](https://docs.openim.io/sdks/quickstart/miniProgram).
## Installation ๐ป
### Adding Dependencies
```shell
npm install @openim/client-sdk --save
```
## Usage ๐
The following examples demonstrate how to use the SDK. TypeScript is used, providing complete type hints.
### Importing the SDK
```typescript
import { getSDK } from '@openim/client-sdk';
const IMSDK = getSDK();
```
### Logging In and Listening for Connection Status
> Note: You need to [deploy](https://github.com/openimsdk/open-im-server#rocket-quick-start) OpenIM Server first, the default port of OpenIM Server is 10001, 10002.
```typescript
import { getSDK, CbEvents, CallbackEvent } from '@openim/client-sdk';
const IMSDK = getSDK();
IMSDK.on(CbEvents.OnConnecting, handleConnecting);
IMSDK.on(CbEvents.OnConnectFailed, handleConnectFailed);
IMSDK.on(CbEvents.OnConnectSuccess, handleConnectSuccess);
IMSDK.login({
userID: 'IM user ID',
token: 'IM user token',
platformID: 5,
wsAddr: 'ws://your-server-ip:10001',
apiAddr: 'http://your-server-ip:10002',
});
function handleConnecting() {
// Connecting...
}
function handleConnectFailed({ errCode, errMsg }: CallbackEvent) {
// Connection failed โ
console.log(errCode, errMsg);
}
function handleConnectSuccess() {
// Connection successful โ
}
```
To log into the IM server, you need to create an account and obtain a user ID and token. Refer to the [access token documentation](https://docs.openim.io/restapi/apis/authenticationManagement/getUserToken) for details.
### Receiving and Sending Messages ๐ฌ
OpenIM makes it easy to send and receive messages. By default, there is no restriction on having a friend relationship to send messages (although you can configure other policies on the server). If you know the user ID of the recipient, you can conveniently send a message to them.
```typescript
import { CbEvents, CallbackEvent, MessageItem } from '@openim/client-sdk';
// Listenfor new messages ๐ฉ
IMSDK.on(CbEvents.OnRecvNewMessages, handleNewMessages);
const message = (await IMSDK.createTextMessage('hello openim')).data;
IMSDK.sendMessage({
recvID: 'recipient user ID',
groupID: '',
message,
})
.then(() => {
// Message sent successfully โ๏ธ
})
.catch(err => {
// Failed to send message โ
console.log(err);
});
function handleNewMessages({ data }: CallbackEvent<MessageItem[]>) {
// New message list ๐จ
console.log(data);
}
```
## Examples ๐
You can find a demo web app that uses the SDK in the [openim-electron-demo](https://github.com/openimsdk/open-im-pc-web-demo) repository.
## Community :busts_in_silhouette:
- ๐ [OpenIM Community](https://github.com/OpenIMSDK/community)
- ๐ [OpenIM Interest Group](https://github.com/Openim-sigs)
- ๐ [Join our Slack community](https://join.slack.com/t/openimsdk/shared_invite/zt-2swhhkqlt-D17OeOUpi9fAFF~uhK3VOA)
- :eyes: [Join our wechat (ๅพฎไฟก็พค)](https://openim-1253691595.cos.ap-nanjing.myqcloud.com/WechatIMG20.jpeg)
## Community Meetings :calendar:
We want anyone to get involved in our community and contributing code, we offer gifts and rewards, and we welcome you to join us every Thursday night.
Our conference is in the [OpenIM Slack](https://join.slack.com/t/openimsdk/shared_invite/zt-2ijy1ys1f-O0aEDCr7ExRZ7mwsHAVg9A) ๐ฏ, then you can search the Open-IM-Server pipeline to join
We take notes of each [biweekly meeting](https://github.com/orgs/OpenIMSDK/discussions/categories/meeting) in [GitHub discussions](https://github.com/openimsdk/open-im-server/discussions/categories/meeting), Our historical meeting notes, as well as replays of the meetings are available at [Google Docs :bookmark_tabs:](https://docs.google.com/document/d/1nx8MDpuG74NASx081JcCpxPgDITNTpIIos0DS6Vr9GU/edit?usp=sharing).
## Who are using OpenIM :eyes:
Check out our [user case studies](https://github.com/OpenIMSDK/community/blob/main/ADOPTERS.md) page for a list of the project users. Don't hesitate to leave a [๐comment](https://github.com/openimsdk/open-im-server/issues/379) and share your use case.
## License :page_facing_up:
OpenIM Server is licensed under the Apache 2.0 license. See [LICENSE](https://github.com/openimsdk/open-im-server/tree/main/LICENSE) for the full license text.