load-nextstep-plist

Read and parse a NeXTSTEP property list file

GPL-3.0 License

Downloads
33
Stars
6

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 Chees nextstep-plist module.

This module is modelled on Sindre Sorhuss load-json-file.

License

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

Package Rankings
Top 15.2% on Npmjs.org
Badges
Extracted from project README
Build Status Coverage Status