local-network-scan
TypeScript icon, indicating that this package has built-in type declarations

1.1.3 • Public • Published

local-network-scan

A lightweight library to quickly scan local network.

local-network-scan

The library uses arp tool, in case of Linux machine, make sur it's installed on run-time (or install it by apt-get install net-tools).

The library ping all network IP's in parallel to make the scan faster should take ~10 seconds or less.

Install via NPM:

npm install local-network-scan

Examples

import { scanLocalNetwork } from 'local-network-scan';

(async () => {

	// Scan default network, with default option
	const res1 = await scanLocalNetwork();
	console.log(res1); // [{ ip: '192.168.1.1', mac: '11aa22bb33cc' }, { ip: '192.168.1.2', mac: '12ab23bc34cd' }]

	// Scan specific network
	const res2 = await scanLocalNetwork({ localNetwork: '192.168.2' });
	console.log(res2); // [{ ip: '192.168.2.1', mac: '11aa22bb33cc' }, { ip: '192.168.2.2', mac: '12ab23bc34cd' }]

	// Query device vendor (using https://macvendors.com/ API) - OFF by default
	const res3 = await scanLocalNetwork({ queryVendor: true });
	console.log(res3); // [{ ip: '192.168.2.1', mac: '11aa22bb33cc', vendor: 'some vendor' }, { ip: '192.168.2.2', mac: '12ab23bc34cd', vendor: ''  }]
})()

/local-network-scan/

    Package Sidebar

    Install

    npm i local-network-scan

    Weekly Downloads

    8

    Version

    1.1.3

    License

    ISC

    Unpacked Size

    46.9 kB

    Total Files

    19

    Last publish

    Collaborators

    • haimkastner