npm install readcontrolA way to read Debian control files
sh
npm install --save readcontrol
`Unit Tests
To run tests:
`bash
$ npm test
`API
$3
Exposes the module version
Version:
0.0.2*
$3
Parses the file at the given _fp_
Example
`javascript
control.read('./control', function(err, out) {
if (err) throw err
console.log(out)
// => {
// => package: 'com.curapps.test',
// => name: 'Test',
// => depends: ['mobilesubstrate', 'preferenceloader'],
// => version: '2.0.0',
// => architecture: 'iphoneos-arm',
// => description: 'This is a test',
// => maintainer: 'Evan Lucas',
// => author: 'Evan Lucas',
// => homepage: 'http://example.com',
// => section: 'Tweaks'
// => }
})
`##### Params
| Name | Type(s) | Description |
| ---- | ------- | ----------- |
| fp | String | The file path |
| cb | Function | function(err, obj) |
*
$3
Parses the file at the given _fp_
Example
`javascript
var out = control.readSync('./control')
console.log(out)
// => {
// => package: 'com.curapps.test',
// => name: 'Test',
// => depends: ['mobilesubstrate', 'preferenceloader'],
// => version: '2.0.0',
// => architecture: 'iphoneos-arm',
// => description: 'This is a test',
// => maintainer: 'Evan Lucas',
// => author: 'Evan Lucas',
// => homepage: 'http://example.com',
// => section: 'Tweaks'
// => }
``##### Params
| Name | Type(s) | Description |
| ---- | ------- | ----------- |
| fp | String | The file path |
*