load-nextstep-plist

1.0.3 • Public • Published

load-nextstep-plist Build Status Coverage Status

Read and parse a NeXTSTEP property list file

Loads property list files that follow the NeXTSTEP “plain text” format. Also works with other file formats that use the same syntax, such as the .glyphs files used for the Glyphs font editor.

Install

npm install --save load-nextstep-plist

Usage

const LOAD_PLIST = require('load-nextstep-plist')
 
LOAD_PLIST('test.plist')
    .then(data => {
        console.log(data)
        // => { foo: 'bar' }
    })

API

loadNextstepPlist(filepath)

Returns a promise for the parsed property list file.

loadNextstepPlist.sync(filepath)

Returns the parsed property list file.

const LOAD_PLIST = require('load-nextstep-plist')
 
console.log(LOAD_PLIST.sync('test.plist'))
// => { foo: 'bar' }

See also

Acknowledgements

Parsing is accomplished using Chee’s nextstep-plist module.

This module is modelled on Sindre Sorhus’s load-json-file.

License

This software is free to use, modify, and redistribute under a GNU General Public License.

Package Sidebar

Install

npm i load-nextstep-plist

Weekly Downloads

12

Version

1.0.3

License

GPL-3.0

Unpacked Size

37.6 kB

Total Files

4

Last publish

Collaborators

  • delucis