libMqtt.js 232 B

1234567891011
  1. import mqtt from './mqtt.js'
  2. const options = {
  3. clientId: "wx_" + parseInt(Math.random() * 100 + 800, 10),
  4. keepalive: 28,//每28秒发送一次心跳
  5. connectTimeout: 15 * 1000,//连接超时的时间
  6. };
  7. module.exports = $root;