如何让所有 MAC 个地址与 node.js 连接到 WiFi?

How to get all MAC addresses connected to WiFi with node.js?

有没有办法使用 node.js 列出所有已连接设备的 MAC 地址?

您可能想试试这个像 nmap 一样工作的节点模块。

https://github.com/jas-/node-libnmap

var nmap = require('libnmap');

nmap.discover(function(err, report) {
  if (err) throw new Error(err);

  for (var item in report) {
    console.log(JSON.stringify(report[item]));
  }
});

这个库有一些很好的实用工具,可以满足您的需求。

还有其他 2 个模块也执行类似的操作。

https://github.com/TheThingSystem/node-arp-a

https://github.com/goliatone/arpscan