Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will be a support of raw sockets in node.js, e.g. to create ping packets?

Will be a support of raw sockets in node.js, e.g. to create ping packets?

like image 939
sauletasmiestas Avatar asked Dec 09 '12 15:12

sauletasmiestas


1 Answers

A new module named node-raw-socket offers the perfect solution for real raw sockets using nodejs.

And, for creating ping (ICMP) packets, the same developer has a very nice working (using it) solution based on node-raw-sockets as well: node-net-ping.

like image 96
umutm Avatar answered Sep 28 '22 00:09

umutm