0.0.1 • Published 2 years ago

node-sddc v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Node.js 的 SDDC 通讯客户端

// 安装
npm install node-sddc

// 默认配置
const sddcClient = sddc({
    edgerosIP: '192.168.128.1',
    edgerosPort: 6800, // 680 无须主动上报
    //report
    name: 'PC-Node',
    type: 'device',
    excl: false,
    desc: 'PC端 EdgerOS 节点',
    model: '1',
    vendor: 'MRC'
  })

// sddc 消息发送
sddcClient.sendMessage(JSON.stringify({ name: 'hello' }))

// sddc 消息接收
sddcClient.on('message', (buffer, remoteInfo) => {})