Node.js Net Module

❮ Ingeboude modules


Definisie en gebruik

Die Net-module bied 'n manier om TCP-bedieners en TCP-kliënte te skep.


Sintaksis

Die sintaksis om die Net-module in jou toepassing in te sluit:

var net = require('net');

Netto eienskappe en metodes

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

❮ Ingeboude modules