Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

sse-client.js 161B

12345
  1. var EventSource = require('..')
  2. var es = new EventSource('http://localhost:8080/sse')
  3. es.addEventListener('server-time', function (e) {
  4. console.log(e.data)
  5. })