1.0.0 • Published 4 years ago

winregsync v1.0.0

Weekly downloads
4
License
ISC
Repository
-
Last release
4 years ago

This package enables the user to put and retrieve Windows registry keys and paths synchronously

Example

const winRegSync = require('winRegSync')

for(const path of winRegSync.paths(winRegSync.HKLM, '\\SOFTWARE\\JavaSoft\\Java Development Kit')) {
    const javaHome = winRegSync.getKey(path, 'JavaHome')
    console.log(`Java Home Key: ${javaHome}`)
}

ToDo

  • Implement put and set function