0.0.10-beta.16 โ€ข Published 7 months ago

@zsjinwei/openim-client-sdk v0.0.10-beta.16

Weekly downloads
-
License
GPL-3.0-only
Repository
-
Last release
7 months ago

JavaScript/TypeScript Client SDK for OpenIM ๐Ÿ‘จโ€๐Ÿ’ป๐Ÿ’ฌ

Use this SDK to add instant messaging capabilities to your application. By connecting to a self-hosted OpenIM 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/ for detailed documentation and guides.

For the SDK reference, see https://docs.openim.io/sdks/quickstart/miniProgram.

Installation ๐Ÿ’ป

Adding Dependencies

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

import { getSDK } from '@openim/client-sdk';

const IMSDK = getSDK();

Logging In and Listening for Connection Status

Note: You need to deploy OpenIM Server first, the default port of OpenIM Server is 10001, 10002.

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 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.

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 repository.

Community :busts_in_silhouette:

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 ๐ŸŽฏ, then you can search the Open-IM-Server pipeline to join

We take notes of each biweekly meeting in GitHub discussions, Our historical meeting notes, as well as replays of the meetings are available at Google Docs :bookmark_tabs:.

Who are using OpenIM :eyes:

Check out our user case studies page for a list of the project users. Don't hesitate to leave a ๐Ÿ“comment and share your use case.

License :page_facing_up:

OpenIM Server is licensed under the Apache 2.0 license. See LICENSE for the full license text.

0.0.10-beta.16

7 months ago

0.0.10-beta.15

7 months ago

0.0.10-beta.8

7 months ago

0.0.10-beta.9

7 months ago

0.0.10-beta.4

7 months ago

0.0.10-beta.5

7 months ago

0.0.10-beta.6

7 months ago

0.0.10-beta.7

7 months ago

0.0.10-beta.10

7 months ago

0.0.10-beta.14

7 months ago

0.0.10-beta.13

7 months ago

0.0.10-beta.12

7 months ago

0.0.10-beta.11

7 months ago

0.0.10-beta.3

7 months ago

0.0.10-beta.2

7 months ago

0.0.10-beta.1

7 months ago

0.0.9-beta.1

7 months ago