Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 430 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 430 Bytes

msklc-parser

Parse Microsoft Keyboard Layout Creator (MSKLC) .klc files into a JSON representation.

Usage

To install:

npm install msklc-parser --save

To use:

import fs from 'fs';
import msklcParser from 'msklc-parser';

const klc = fs.readFileSync('path/to/klc/file.klc', 'utf8');
const json = msklcParser(klc);

License

Licensed under the MIT License. See LICENSE.md for details.