node-hwid
v0.1.0
Published
Use it to get machine unique 'hardware' id
Downloads
39
Maintainers
Readme
###NodeJS HWID Use it to get machine unique 'hardware' id
const hwid = require(`node-hwid`)
hwid({
hash: true, // hash id output (sha256), if false - module will return original id
}).then(id =>
console.log(id) // HWID here
)