UNPKG
icmp
Version:
latest (2.0.1)
2.0.1
2.0.0
1.4.0
1.3.2
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.0
Internet Control Message Protocol in Node
github.com/QuantumSheep/node-icmp
QuantumSheep/node-icmp
icmp
/
example
/
listen.js
6 lines
(4 loc)
•
143 B
JavaScript
View Raw
1
2
3
4
5
6
const
icmp =
require
(
'icmp'
); icmp.
listen
(
(
buffer, source
) =>
{
console
.
log
(
`Received
${buffer.length}
bytes buffer from
${source}
`
); });