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

javascript, node.js, raw-sockets

Solution

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.

Problem

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

Original source