NOTE: This package has been deprecated in favor of the AsyncAPI Studio. To check Studio changes against Playground check this list.
Run:
npm install
and
npm start
and go to http://localhost:5000.
docker build -t asyncapi-playground .
docker run -d --name asyncapi-playground -p 83:5000 asyncapi-playground:latest
Then browse to http://localhost:83/
- load - load the external AsyncAPI spec:
https://playground.asyncapi.io/?load=https://raw.githubusercontent.com/asyncapi/spec/master/examples/streetlights-kafka.yml
- url - this same purpose as load:
https://playground.asyncapi.io/?url=https://raw.githubusercontent.com/asyncapi/spec/master/examples/streetlights-kafka.yml
- template - show given template. Allowed values are
markdown
andhtml
:
https://playground.asyncapi.io/?template=markdown
- readOnly - show only rendered template. Allowed values are
true
and empty string:
https://playground.asyncapi.io/?readOnly
- DISABLE_DEBUG - set it to 1 or
true
to disable logs:
DISABLE_DEBUG=1 npm start