A native node module to access managed app preferences on macOS
npm install cf-prefs
 
``js`
$ yarn add cf-prefs
This native Node.js module allows you to read managed app preferences on macOS. It maps to the underlying CFPreferencesCopyAppValue family of APIs. This module only truly works in apps with valid bundle IDs (i.e. Electron apps).
* key String - The preference key to fetch the value of, has to be a valid UTF-8 string.
Returns String | Integer | Boolean | Object | Array | undefined
Notes:
* If the preference is not available you will receive undefined.
Example:
`js`
console.log('My Preference Value:', prefs.getPreferenceValue('MyAppsCoolPreference'))
* key String - The preference key to determine if the value is forced, has to be a valid UTF-8 string.
Returns Boolean` - Whether the preference key is "forced", if this method returns true you should not allow users to override this preference in your application as a system administrator has indicated this preference key is "forced". For more information check out the apple API docs.