arptable-js

NPM package that returns rich object of ARP table

Usage no npm install needed!

<script type="module">
  import arptableJs from 'https://cdn.skypack.dev/arptable-js';
</script>

README

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));
});