machine-uuid
v1.2.0
Published
get machine's uuid
Downloads
4,406
Readme
machine-uuid
Get machine's hardware UUID on supported platform. If all else fails, then persist a randomly generated uuid in file $homedir/.nodemid
Install
npm install machine-uuid --save
Basic example
require("machine-uuid")(function(uuid) {
console.log(uuid)
})
# Or using Promise
const machineUuid = require("machine-uuid")
machineUuid().then((uuid)=>console.log(uuid))