Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (telepact-console) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Telepact Console
The Console is a debugging tool that allows you to easily connect to your running Telepact server, visualize your API with interactive documentation, and submit live requests to your server.
Installation
npm install -g telepact-consoleUsage
npx telepact-console -p 8080Then you can access the UI in your browser at http://localhost:8080.
Docker
The Console is also available as a docker image, which can be installed directly from Releases. You can copy the link for the Console from the release assets.
Example:
curl -L -o telepact-docker.tar.gz https://github.com/Telepact/telepact/releases/download/1.0.0-alpha.102/docker-image-telepact-console-1.0.0-alpha.102.tar.gz
docker load < telepact-docker.tar.gzStarting the docker container:
docker run -p 8080:8080 telepact-console:1.0.0-alpha.102For a more concrete usage example, see self-hosting example.