Karbust / machine-uuid

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About


Languages

Language:JavaScript 100.0%