This is a tool for editing, validating and previewing OpenRPC documents.
This is meant to be an all-in-one developer portal for OpenRPC documents. It includes an editor and a live-preview of the documentation.
This helps developers visualize the OpenRPC and iterate very quickly on creating OpenRPC documents via the built in editor tooling.
Navigate to playground.open-rpc.org and start playing around. You can build your own OpenRPC document, validate existing documents quickly, or use the examples.
CTRL + SPACE
- auto complete (TAB or ENTER to complete)CTRL + N/CTRL + P
- down/up a line (also works as up/down in autocomplete)ALT + SHIFT + F
- format documentCMD + K + BACKSPACE
- reset to empty schemaCMD + K + I
- pop up tooltip under cursorCMD + K + V
- toggle vim modeCMD + K + R
- replace meta schemaThe query string parameters can be used to configure the playground in different ways.
uiSchema
uiSchema
is used for UI layer configuration. here is its interface:
schemaUrl
schemaUrl
- fetch schema by URL and display it as the content of the playground on startup.
schema
schema
- JSON String used to display it as the content of the playground on startup.
examples:
http://playground.open-rpc.org/?uiSchema[appBar][ui:splitView]=false
http://playground.open-rpc.org/?uiSchema[appBar][ui:edit]=false
http://playground.open-rpc.org/?uiSchema[appBar][ui:input]=false
http://playground.open-rpc.org/?uiSchema[appBar][ui:examplesDropdown]=false
http://playground.open-rpc.org/?uiSchema[appBar][ui:transports]=false
http://playground.open-rpc.org/?uiSchema[appBar][ui:title]=My Site&uiSchema[appBar][ui:logoUrl]=https://github.com/open-rpc/design/raw/master/icons/open-rpc-logo-noText/open-rpc-logo-noText%20(PNG)/128x128.png
If you want to use the content of a Github Gist with the playground, you can:
use the latest revision for a Gist file
https://playground.open-rpc.org/?schemaUrl=https://gist.githubusercontent.com/[gist username]/[gist ID]/raw/[file name]
use a specific revision for a Gist file:
https://playground.open-rpc.org/?schemaUrl=https://gist.githubusercontent.com/[gist username]/[gist ID]/raw/[gist commit ID]/[file name]
If you require to have different default values for the uiSchema
, schemaUrl
or some other labels in the page that are not part of the uiSchema
, you can use the below environment variables in your desired .env
files before starting the app or before building it:
Variable | Description |
---|---|
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_INPUT | Default value for uiSchema[appBar][ui:input] |
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_INPUTPLACEHOLDER | Default value for uiSchema[appBar][ui:inputPlaceholder] |
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_LOGOURL | Default value for uiSchema[appBar][ui:logoUrl] |
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_SPLITVIEW | Default value for uiSchema[appBar][ui:splitView] |
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_DARKMODE | Default value for uiSchema[appBar][ui:darkMode] |
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_TITLE | Default value for uiSchema[appBar][ui:title] |
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_EXAMPLESDROPDOWN | Default value for uiSchema[appBar][ui:examplesDropdown] |
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_EDIT | Default value for uiSchema[appBar][ui:edit] |
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_TRANSPORTS | Default value for uiSchema[appBar][ui:transports] |
REACT_APP_DEFAULT_UISCHEMA_METHODS_UI_DEFAULTEXPANDED | Default value for uiSchema[methods][ui:defaultExpanded] |
REACT_APP_DEFAULT_UISCHEMA_METHODS_UI_METHODPLUGINS | Default value for uiSchema[methods][ui:methodPlugins] |
REACT_APP_DEFAULT_UISCHEMA_PARAMS_UI_DEFAULTEXPANDED | Default value for uiSchema[params][ui:defaultExpanded] |
REACT_APP_DEFAULT_SCHEMAURL | Default value for schemaUrl |
REACT_APP_EXAMPLE_DOCUMENTS_DROPDOWN_TITLE | Default title value for the examples drop-down |
REACT_APP_EXAMPLE_DOCUMENTS_DROPDOWN_TEXT | Default text value for the examples drop-down |
REACT_APP_EXAMPLE_DOCUMENTS_DROPDOWN_LIST | Default list of examples |
.env.development for a view only case
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_INPUT=false
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_LOGOURL="https://www.shutterstock.com/image-vector/abstract-initial-letter-s-logo-260nw-1862762845.jpg"
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_SPLITVIEW=false
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_TITLE="Company Services"
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_EXAMPLESDROPDOWN=true
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_EDIT=false
REACT_APP_DEFAULT_UISCHEMA_APPBAR_UI_TRANSPORTS=false
REACT_APP_DEFAULT_SCHEMAURL="https://raw.githubusercontent.com/open-rpc/examples/master/service-descriptions/petstore-openrpc.json"
REACT_APP_EXAMPLE_DOCUMENTS_DROPDOWN_TITLE="Deployed Services"
REACT_APP_EXAMPLE_DOCUMENTS_DROPDOWN_TEXT="Deployed Services"
REACT_APP_EXAMPLE_DOCUMENTS_DROPDOWN_LIST=[{"name":"Pet Store","url":"https://raw.githubusercontent.com/open-rpc/examples/master/service-descriptions/petstore-openrpc.json"},{"name":"Shipping Service","url":"https://myserver.com/shipping/openrpc.json"},{"name":"Order Service","url":"https://myserver.com/order/openrpc.json"}]
This project was bootstrapped with Create React App.
In the project directory, you can run:
npm start
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
npm test
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
npm run build
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.
How to contribute, build and release are outlined in CONTRIBUTING.md, BUILDING.md and RELEASING.md respectively. Commits in this repository follow the CONVENTIONAL_COMMITS.md specification.