feat: add error handle

Signed-off-by: MiaoWoo <admin@yumc.pw>
clean
MiaoWoo 2020-03-02 22:28:27 +08:00
parent 15197355c5
commit ed9fec281c
1 changed files with 6 additions and 0 deletions

View File

@ -21,6 +21,10 @@ function createConnection(host: string, port: number, username: string) {
return client;
}
client.on('error', (error) => {
console.log("Client Error", error)
})
client.on('end', (resone) => {
console.log("Client End Resone:", resone)
client = createConnection('192.168.2.5', 25577, username)
@ -48,6 +52,8 @@ rl.on('line', function (line) {
switch (line) {
case "":
break;
case "eval":
break;
case "write":
break;
case "/respawn":