JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q69315F
  • License Apache-2.0

A web-based interface for inspecting and testing Telepact APIs.

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-console

    Usage

    npx telepact-console -p 8080

    Then 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.gz

    Starting the docker container:

    docker run -p 8080:8080 telepact-console:1.0.0-alpha.102

    For a more concrete usage example, see self-hosting example.