https://github.com/folkloreinc/robot-illustrator
Automate Adobe Illustrator with Node.js and Applescript
https://github.com/folkloreinc/robot-illustrator
adobe adobe-illustrator applescript node-js
Last synced: about 1 year ago
JSON representation
Automate Adobe Illustrator with Node.js and Applescript
- Host: GitHub
- URL: https://github.com/folkloreinc/robot-illustrator
- Owner: folkloreinc
- Created: 2017-02-16T15:03:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-02T19:37:41.000Z (over 9 years ago)
- Last Synced: 2025-03-26T11:21:37.714Z (about 1 year ago)
- Topics: adobe, adobe-illustrator, applescript, node-js
- Language: JavaScript
- Size: 38.1 KB
- Stars: 14
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
Robot Illustrator
============
Control Adobe Illustrator with Node.js using Applescript. This library includes a command-line interface, an HTTP server and is also accessible as a javascript library.
*** WORK IN PROGRESS ***
## Installation
To use the CLI, install it globally:
```shell
npm install -g robot-illustrator
```
To use the Javascript API, install it as a dependency in your project:
```shell
npm install --save robot-illustrator
```
## Using the CLI
Once you've installed this package globally, you can use the following command:
```shell
robot-illustrator
```
You can get the list of supported commands by adding the `--help` option
```shell
robot-illustrator --help
```
## Using the HTTP server
You can control Adobe Illustrator using the built-in HTTP server. To start it, clone the project on your computer and execute the following command in the robot-illustrator folder:
```shell
npm start
```