@webcon/js-custom-control-workbench
v2.0.1
Published
The JS Custom Control Workbench is an application that allows you to run and test JavaScript custom controls for the Modern form in the WEBCON BPS system.
Downloads
99
Readme
JS Custom Control Workbench
The JS Custom Control Workbench is an application that allows you to run and test JavaScript custom controls for the Modern Form in the WEBCON BPS system.
The Workbench is a node.js app using the Express framework.
Build And Run
Before building the application its dependencies have to be installed:
npm install
Next, the application needs to be built:
npm build
The application uses a few environment variables:
DEBUG
, which should be set toworkbench:*
to be able to see diagnostic messages from this application,port
, port number.
Variables can be set by adding a file named .env
to the root directory (near this README file) and contents like:
DEBUG=workbench:*
port=3000
The application can be started by running:
npm start
After running the server application will be available under http://localhost:<port>.