easemob-websdk
TypeScript icon, indicating that this package has built-in type declarations

4.10.0 • Public • Published

环信 IM SDK 介绍

sdk 提供完整的即时消息功能开发功能,屏蔽/封装并阻止其内部复杂的细节,并提供相对简单和简洁的 API 接口,以方便第三方应用程序快速集成 PC/mobile Web 应用程序的即时消息功能

可以通过以下方式引用 WebSDK:

  1. 安装
npm install easemob-websdk --save
  1. 引入 SDK。
import EC from 'easemob-websdk'

3、初始化 SDK

const conn = new EC.connection({
	appKey: '<your app key>',
});

4、登录环信服务

const options = {
	user: 'username',
	pwd: 'password',
};
conn.open(options);

5、发送消息

let option = {
	chatType: 'singleChat', // 会话类型,设置为单聊。
	type: 'txt', // 消息类型。
	to: 'userID', // 消息接收方(用户 ID)。
	msg: 'message content', // 消息内容。
};
let msg = EC.message.create(option);
conn.send(msg)
	.then(() => {
		console.log('send private text Success');
	})
	.catch((e) => {
		console.log('Send private text error');
	});

参考文档

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
4.10.092latest
4.10.0-beta.10beta

Version History

VersionDownloads (Last 7 Days)Published
4.10.092
4.10.0-beta.10
4.9.27
4.9.10
4.9.1-beta0
4.9.00
4.9.0-beta0
4.8.112
4.8.1-beta0
4.8.019
4.8.0-beta0
4.7.06
4.7.0-beta0
4.6.02
4.6.0-beta0
4.5.118
4.5.1-beta0
4.5.06
4.5.0-beta0
4.4.12
4.4.00
4.3.10
4.3.1-beta0
4.3.00
4.3.0-beta0
4.2.11
4.2.1-beta0
4.2.01
4.2.0-beta0
4.1.70
4.1.7-beta20
4.1.7-beta0
4.1.60
4.1.50
4.1.5-beta0
4.1.44
4.1.4-beta20
4.1.4-beta10
4.1.4-beta1
4.1.30
4.1.3-beta20
4.1.3-beta0
4.1.0-beta40
4.1.0-beta30
4.1.23
4.1.10
4.1.00
4.1.0-beta20
4.1.0-beta0
4.0.918
4.0.9-beta0
4.0.80
4.0.8-beta0
4.0.78
4.0.6-beta1
4.0.50
4.0.40
4.0.4-beta0
4.0.31
4.0.3-beta0
4.0.20
4.0.2-beta0
4.0.11
4.0.1-beta70
4.0.1-beta50
4.0.1-beta40
4.0.1-beta30
4.0.1-beta20
4.0.1-beta0
4.0.00
4.0.0-beta0
3.6.322
3.6.3-beta0
3.6.01
3.6.0-beta20
3.6.0-beta0
3.5.21
3.5.2-beta0
3.5.11
3.5.1-beta0
3.5.00
3.4.40
3.4.30
3.4.3-beta0
3.4.20
3.4.00
3.4.0-beta0
3.3.20
3.3.2-beta0
3.3.00
3.3.0-beta0
3.2.20
3.2.2-beta0
3.2.10
3.2.1-beta0
3.2.01
3.2.0-beta0
3.1.40
3.1.4-beta0
3.1.30
3.1.3-beta0
3.1.20
3.1.2-beta0
3.0.100
3.0.70
3.0.60
3.0.50
3.0.40
3.0.20
3.0.11
3.0.00
2.9.30
2.9.20
2.9.10
1.11.14
1.11.00
1.8.40
1.8.30
1.8.20
1.8.10
1.8.01
1.4.150
1.4.140
1.5.00
1.4.120
1.4.110
1.4.100
1.4.90
1.4.80
1.4.71
1.4.60
1.4.50
1.4.40
1.4.30
1.4.20
1.4.10
1.1.70
1.1.50
1.1.40
1.1.30
1.0.00

Package Sidebar

Install

npm i easemob-websdk

Weekly Downloads

236

Version

4.10.0

License

ISC

Unpacked Size

2.63 MB

Total Files

56

Last publish

Collaborators

  • easemob