Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 895 Bytes

README.md

File metadata and controls

41 lines (35 loc) · 895 Bytes

yx-web-im-demo

项目介绍

网易云信im

安装

cnpm i

运行

npm run run

打包 require

npm run rjs

在github中查看

1. 使用默认的项目配置

点击进入

2. 使用自己的项目配置

首先, 访问 https://kscript.github.io 页面
然后, 在控制台给 localstorage 设置下 有效的uid, token, appkey属性 及 host 属性 (im项目所在目录) 设置完毕, 访问 im项目登录页 即可查看自己的im项目

简单调试

void requirejs(['global'], function(global){
  // 获取im实例
  var yx = global('yunXin');
  console.log(yx);
  // 发送消息
  yx.sendMessage({
    to: 'ks2017',
    text: '你好'
  });
});