1.0.0 ā€¢ Published 2 years ago

reg-file-parser v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

What is this?

A library written in typescript that parses Windows Registry export files (.reg).

This project started life as a direct porting of Henryk Filipowicz's Registry Export File Parser which is written in C#; but it has evolved since; though the principals remain the same.

Add to your project

npm

npm install reg-file-parser

yarn

yarn add reg-file-parser

Quickstart

Parse a registry file

// CommonJS
const regParser = require('reg-file-parser');
const result = new regParser.RegFileObject('./relative/path/to/file.reg');
// do something with `result`
// ESModule
import { RegFileObject} from 'reg-file-parser';

const result = new RegFileObject('./relative/path/to/file.reg');
// do something with `result`

All interfaces are public. You can use them to type your code as needed.

Docs

Docs are generated with TypeDoc

https://saiwolf.github.io/reg-file-parser/

Author

šŸ‘¤ Robert Cato saiwolf@swmnu.net

šŸ¤ Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ā­ļø if this project helped you!

šŸ“ License

Copyright Ā© 2021 Robert Cato <saiwolf@swmnu.net>. This project is MIT licensed.


This README was generated with ā¤ļø by readme-md-generator