TCP Socket Server & Client by Node.js
이번 포스트에서는 TCP Socket Server & Client 구현하는 방법에 대해 설명합니다. Node.js 에서 net 모듈에 대한 API 정의는 아래 사이트에서 확인하십시오. http://nodejs.sideeffect.kr/docs/v0.10.7/api/net.html net Node.js v0.10.7 Manual & Documentation net# Stability: 3 - Stable The net module provides you with an asynchronous network wrapper. It contains methods for creating both servers and clients (called streams). You can include this module w..