1.2.0 • Published 6 years ago

machine-uuid v1.2.0

Weekly downloads
1,246
License
ISC
Repository
github
Last release
6 years ago

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