3.2.2 • Published 2 years ago
windows-native-registry v3.2.2
windows-native-registry
- No external processes.
- Node-API
- Electron ready
export interface RegistryValue {
name: string
type: REG
value: any
}
export enum HK {
CR = 0x80000000,
CU = 0x80000001,
LM = 0x80000002,
U = 0x80000003,
}
export enum REG {
SZ = 1,
EXPAND_SZ = 2,
BINARY = 3,
DWORD = 4,
}
export function getRegistryKey (root: HK, path: string): {[name: string]: RegistryValue}
export function getRegistryValue (root: HK, path: string, name: string): any
export function setRegistryValue (root: HK, path: string, name: string, type: REG, value: string): any
export function setRegistryValue (root: HK, path: string, name: string, type: REG.MULTI_SZ, value: string[]): any
export function listRegistrySubkeys (root: HK, path: string): string[]
export function createRegistryKey (root: HK, path: string)
export function deleteRegistryKey (root: HK, path: string)
Contributors ✨
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
3.2.2
2 years ago
3.2.1
3 years ago
3.2.0
3 years ago
3.1.0
4 years ago
3.0.0
5 years ago
2.0.0
5 years ago
1.0.17
6 years ago
1.0.16
6 years ago
1.0.15
6 years ago
1.0.14
6 years ago
1.0.13
6 years ago
1.0.12
6 years ago
1.0.11
6 years ago
1.0.10
6 years ago
1.0.9
6 years ago
1.0.8
6 years ago
1.0.7
6 years ago
1.0.6
6 years ago
1.0.5
6 years ago
1.0.4
6 years ago
1.0.3
6 years ago
1.0.2
6 years ago
1.0.1
6 years ago
1.0.0
6 years ago