GithubHelp home page GithubHelp logo

sammarks / neutrino-preset-cep Goto Github PK

View Code? Open in Web Editor NEW
1.0 3.0 0.0 495 KB

A Neutrino preset for developing plugins on Adobe's CEP (Common Extensibility Platform)

License: MIT License

JavaScript 88.14% HTML 11.86%
cep adobe-cep-extension extendscript neutrino neutrino-preset adobe extendscript-extensions

neutrino-preset-cep's Introduction

CircleCI NPM version NPM downloads License Issues

neutrino-preset-cep is a Neutrino preset that supports creating plugins for Adobe's CEP (Common Extensibility Platform).

Get Started

npm install --save-dev neutrino-preset-cep
module.exports = {
  use: ['neutrino-preset-cep']
}

Additionally, you'll need to provide some configuration options in your package.json (or in the .neutrinorc.js file). See the Configuration section below for more details.

Project Layout

neutrino-preset-cep follows the standard project layout specified by Neutrino. This means that by default all project source code should live in a directory named src in the root of the project. Any ExtendScript source code should live in a directory named extendscript in the root of the project, since it is compiled differently. Any static assets found in static in the root of the project will be copied directly to the build directory. For example, static/test.png will be copied to build/test.png and static/foo/test.png will be copied to build/foo/test.png.

Configuration

Here is the minimal configuration you'll need in package.json in order for this preset to function properly:

{
  "name": "test-plugin",
  "version": "0.0.1",
  "manifest": {
    "extensions": {
      "panel": {
        "type": "panel",
        "title": "Adobe CEP Plugin"
      }
    }
  }
}

In this example, you'll be creating a plugin called "Adobe CEP Plugin" (with the identifier test-plugin), with the following notes:

  • Frontend Source Code located at src/panel.jsx
  • ExtendScript Code located at extendscript/panel.js

More Complete Configuration

Here is an example of more complete configuration located in package.json:

{
  "name": "adobe-plugin",
  "version": "0.0.1",
  "manifest": {
    "bundleName": "Adobe Plugin",
    "bundleId": "com.my-company.adobe-plugin",
    "hosts": {
      "AEFT": "13.0"
    },
    "requiredRuntimes": {
      "CSXS": "6.0"
    },
    "extensions": {
      "panel": {
        "type": "panel",
        "title": "Adobe Plugin",
        "size": [300, 300],
        "minSize": [200, 200],
        "maxSize": [400, 400]
      },
      "tutorial": {
        "type": "dialog",
        "title": "Adobe Plugin Tutorial",
        "size": [800, 600],
        "minSize": [800, 600],
        "maxSize": [800, 600]
      }
    }
  }
}

If you don't want to put your configuration in the package.json file, you can specify configuration inside the options like so:

module.exports = {
  use: ['neutrino-preset-cep', {
    packageJson: {
      name: 'adobe-plugin',
      version: '0.0.1',
      manifest: {
        foo: 'bar'
      }
    }
  }]
}

Customizing

neutrino-preset-cep has the following options for itself:

  • options.packageJson - Supply an object for this field similar to the structure of the package.json file. A detailed explanation on how to use this feature is above.
  • options.externals - Any additional externals defined here are sent straight into Webpack. Use this if you are using a module that requires internal Node APIs (like fs or child_process). A few externals are already defined by default. These are mocked in the development environment to allow developers to debug in the browser.

This preset makes use of the following presets and middleware, with their configuration paths specified.

So this means you could have configuration like so:

module.exports = {
  use: ['neutrino-preset-cep', {
    react: {},
    compileLoader: {},
    wrapper: {},
    xml: {},
    jsxbin: {}
  }]
}

Features

  • Supports React for the extension frontends.
  • Transpiles ExtendScript support back to ES5 and compiles using JSXBin.
  • Generates a manifest.xml file in the proper CSXS folder using properties defined in package.json

neutrino-preset-cep's People

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.