happyuc-keyfile-recognizer

1.0.0 • Public • Published

happyuc-keyfile-recognizer

Build Status Coverage Status Code Climate npm version dependencies Status

Checks for structural sanity (key-names and value-types) of json-keyfiles.

Currently recognized keyfiles:

Installation

npm install --save happyuc-keyfile-recognizer

Usage

var fs = require('fs');
var recognizer = require('happyuc-keyfile-recognizer');
 
fs.readFile('keyfile.json', (err, data) => {
    var json = JSON.parse(data);
    var result = recognizer(json);
    /** result
     *               [ 'webu', 3 ]   webu (v3) keyfile
     *  [ 'hucersale', undefined ]   Hucersale keyfile
     *                        null   no valid  keyfile
     */
}));

Development

To build and run the tests:

$ npm install
$ npm test

Contributions

Contributions welcome - see CONTRIBUTING.md

License

MIT - see LICENSE.md

Package Sidebar

Install

npm i happyuc-keyfile-recognizer

Weekly Downloads

45

Version

1.0.0

License

MIT

Unpacked Size

90.5 kB

Total Files

20

Last publish

Collaborators

  • happyuc