3.0.0 • Published 2 years ago

@adobe/asset-compute-devtool v3.0.0

Weekly downloads
672
License
Apache-2.0
Repository
github
Last release
2 years ago

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