Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 306 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 306 Bytes

arptable-js

NPM package that returns result of arp table in rich object, useful to identify active devices on the network

how to install

npm install arptable-js

example

var arp = require('arptable-js');
arp.get(function(table){
  console.log(JSON.stringify(table));
});