2017年1月18日 星期三

[nodejs, hw, mac] How to get the mac address

How to get the mac address
GitHub: Download
Google doc: This Document.

Code

function main(){
 let getmac = require('getmac');

 getmac.getMac((err, macAddress) => {
   if(err) throw err;
   console.log(macAddress);
 });
}

main();

Verification