마지막으로 데이터 발송 기능을 다음과 같이 추가합니다.
코드 6-3 Client 데이터 발송
예제 파일 : client.js
...... this.client.on('error', (err) => { if (this.onError) this.onError(this.options, err); }); } write(packet) { this.client.write(JSON.stringify(packet) + '¶'); } } module.exports = tcpClient;