Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

README.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

npm package

Use Adobe's Extension Manager command line tool in node.js.

Installation

$ npm install exman

Usage

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)