node express.js
# log to websocket real-time# use frontend webpage to read log in real timepnpm install
pnpm start// demo in logReader/test.js// init websocket constclientWS=newWebSocket('ws://localhost:8796/')constlog=logger('test',aaaa,true,1000)// replace console.log() with log.log()log.log('this is a log message');// log to websocket real-time // http://localhost:8796/ // can check log here