@adobe/asset-compute-devtool

3.0.0 • Public • Published

Version License

Asset Compute Development Tool

This is a library for the developer tool for exploring and testing the Adobe Asset Compute service.

Installation

$ npm install @adobe/asset-compute-devtool

Usage

The Devtool Server has a simple api for starting and stopping the server:

const { DevtoolServer } = require('@adobe/asset-compute-devtool');

const devtool = new DevtoolServer();
await devtool.run(); // starts server and opens a browser
// ... use developer tool
await devtool.stop(); // stop server

Using a preferred port:

const { DevtoolServer } = require('@adobe/asset-compute-devtool');

const devtool = new DevtoolServer();
await devtool.run(8080); // starts server and binds it to port 8080 or the closest port to 8080 if it is already in use
console.log(devtool.port); // should be 8080 unless that port was already in use
// ... use developer tool
await devtool.stop(); // stop server

Using start function to set up server:

const { start } = require('@adobe/asset-compute-devtool');

const devtool = await start(); // create DevtoolServer instance and run server
// ... use developer tool
await devtool.stop();

See adobe/aio-cli-plugin-asset-compute for an example usage.


Further Documentation

Refer to Asset Compute Development Tool for more information

/@adobe/asset-compute-devtool/

    Package Sidebar

    Install

    npm i @adobe/asset-compute-devtool

    Weekly Downloads

    69

    Version

    3.0.0

    License

    Apache-2.0

    Unpacked Size

    19.1 MB

    Total Files

    447

    Last publish

    Collaborators

    • dylandepass
    • djaeggi
    • adobehalls
    • fullcolorcoder
    • marbec
    • tripod
    • garthdb
    • lazd
    • adobe-admin
    • patrickfulton
    • trieloff
    • shazron
    • krisnye
    • dcpfsdk
    • natebaldwin
    • devongovett
    • aspro83
    • symanovi
    • dpfister
    • stefan-guggisberg
    • korra
    • rofe
    • kptdobe