10 lines
189 B
JavaScript
Raw Permalink Normal View History

2025-05-22 16:23:08 +08:00
'use strict'
var Server = require('../server')
new Server(function (client) {
client.on('connect', function () {
client.connack({ returnCode: 0 })
})
}).listen(3000, 'localhost')