exman
v1.0.1
Published
Javascript wrapper around Adobe's Extension Manager command line tool
Readme
Use Adobe's Extension Manager command line tool in node.js.
Installation
$ npm install exmanUsage
const exman = require('exman');
exman.install(path.join(__dirname, 'com.domain.extension.zxp'))
.then(() => console.log('Extension installed!'))
.catch((stderr) => console.warn(`Failed to install: ${stderr.toString()}`))Module API
| Command | Description | Required Argument |
| ----------- | -------------------- | ---------------------------------------- |
| install | Install an extension | Path to the extension's .zxp file |
| remove | Remove an extension | The extension name (bundle identifier) |
| enable | Enable an extension | The extension name (bundle identifier) |
| disable | Disable an extension | The extension name (bundle identifier) |
| update | Update an extension | The extension name (bundle identifier) |

