الوحدة النمطية Node.js Net

❮ وحدات مدمجة


التعريف والاستخدام

توفر الوحدة النمطية 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

❮ وحدات مدمجة