DEPRECATION NOTICE!
appcd-winreg
has been deprecated in favor of the amazing winreglib
package.
appcd-winreg
Simplified API for querying the Windows Registry.
Visit https://github.com/appcelerator/appc-daemon for more information.
Installation
npm i appcd-winreg
Usage
import * as winreg from 'appcd-winreg';
const value = await winreg.get('HKLM', 'SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion', 'ProductName');
console.log(value);
const keys = await winreg.keys('HKLM', 'SOFTWARE\\Microsoft\\Windows NT');
console.log(keys);
Legal
This project is open source under the Apache Public License v2 and is developed by
Axway, Inc and the community. Please read the LICENSE
file included
in this distribution for more information.