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.
The underlying SDK core is implemented in OpenIM SDK Core. Using cgo, it is exported as C interfaces and provided as dynamic libraries such as DLL, SO, and DYLIB for use by other languages, implemented in OpenIM SDK Cpp.The electron interacts with the OpenIM SDK Cpp through JSON, using FFI (Foreign Function Interface) to communicate with the C interfaces, and the SDK exposes a re-encapsulated API for easy usage. For data storage, it utilizes the SQLite layer that is provided internally by the OpenIM SDK Core.
Visit https://docs.openim.io/ for detailed documentation and guides.
For the SDK reference, see https://docs.openim.io/sdks/quickstart/electron.
npm install @openim/wasm-client-sdk @openim/electron-client-sdk --save
Follow these steps to obtain the static resources required for WebAssembly (WASM):
-
Locate the
@openim/wasm-client-sdk
subdirectory in thenode_modules
directory of your project. Copy all the files in theassets
folder to your project's public resource directory.The files to be copied are:
openIM.wasm
sql-wasm.wasm
wasm_exec.js
-
After copying the files, import the
wasm_exec.js
file in yourindex.html
file using a<script>
tag.
if you are using webpack4, you may flow this issue How to import @openim/wasm-client-sdk in webpack4.x.
The following examples demonstrate how to use the SDK. TypeScript is used, providing complete type hints.
import OpenIMSDKMain from '@openim/electron-client-sdk';
...
new OpenIMSDKMain(libPath, mainWindow.webContents);
...
import '@openim/electron-client-sdk/lib/preload';
import { getWithRenderProcess } from '@openim/electron-client-sdk/lib/render';
const { instance } = getWithRenderProcess();
export const IMSDK = instance;
Note: You need to deploy OpenIM Server first, the default port of OpenIM Server is 10001, 10002.
import { CbEvents, LogLevel } from '@openim/wasm-client-sdk';
import type { WSEvent } from '@openim/wasm-client-sdk/lib/types/entity';
IMSDK.on(CbEvents.OnConnecting, handleConnecting);
IMSDK.on(CbEvents.OnConnectFailed, handleConnectFailed);
IMSDK.on(CbEvents.OnConnectSuccess, handleConnectSuccess);
// electron
await IMSDK.initSDK({
platformID: 'your-platform-id',
apiAddr: 'http://your-server-ip:10002',
wsAddr: 'ws://your-server-ip:10001',
dataDir: 'your-db-dir',
logFilePath: 'your-log-file-path',
logLevel: LogLevel.Debug,
isLogStandardOutput: true,
});
await IMSDK.login({
userID: 'your-user-id',
token: 'your-token',
});
// web
await IMSDK.login({
userID: 'your-user-id',
token: 'your-token',
platformID: 5,
apiAddr: 'http://your-server-ip:10002',
wsAddr: 'ws://your-server-ip:10001',
logLevel: LogLevel.Debug,
});
function handleConnecting() {
// Connecting...
}
function handleConnectFailed({ errCode, errMsg }: WSEvent) {
// 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.
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 } from '@openim/wasm-client-sdk';
import type {
WSEvent,
MessageItem,
} from '@openim/wasm-client-sdk/lib/types/entity';
// Listenfor new messages ๐ฉ
IMSDK.on(CbEvents.OnRecvNewMessages, handleNewMessages);
const message = (await IMSDK.createTextMessage('hello openim')).data;
IMSDK.sendMessage({
recvID: 'recv user id',
groupID: '',
message,
})
.then(() => {
// Message sent successfully โ๏ธ
})
.catch(err => {
// Failed to send message โ
console.log(err);
});
function handleNewMessages({ data }: WSEvent<MessageItem[]>) {
// New message list ๐จ
console.log(data);
}
You can find a demo web app that uses the SDK in the openim-pc-web-demo repository.
- ๐ OpenIM Community
- ๐ OpenIM Interest Group
- ๐ Join our Slack community
- ๐ Join our wechat (ๅพฎไฟก็พค)
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 ๐.
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.
OpenIM is licensed under the Apache 2.0 license. See LICENSE for the full license text.