Node.js Net Module

❮ โมดูลในตัว


ความหมายและการใช้งาน

โมดูล Net มีวิธีการสร้างเซิร์ฟเวอร์ TCP และไคลเอนต์ TCP


ไวยากรณ์

ไวยากรณ์สำหรับการรวมโมดูล Net ในแอปพลิเคชันของคุณ:

var net = require('net');

คุณสมบัติและวิธีการสุทธิ

Method Description
connect() Creates a new connection to the server, and returns a new Socket
createConnection() Creates a new connection to the server, and returns a new Socket
createServer() Creates a new server
isIP Checks if the specified value is an IP address
isIPv4 Checks if the specified value is an IPv4 address
isIPv6 Checks if the specified value is an IPv6 address

❮ โมดูลในตัว