@advanced-rest-client/arc-request-settings-panel

A settings panel with request settings

Usage no npm install needed!

<script type="module">
  import advancedRestClientArcRequestSettingsPanel from 'https://cdn.skypack.dev/@advanced-rest-client/arc-request-settings-panel';
</script>

README

Published on NPM

Build Status

Published on webcomponents.org

<arc-request-settings-panel>

A settings panel with request settings

<arc-request-settings-panel></arc-request-settings-panel>

API components

This components is a part of API components ecosystem

Usage

``

Installation

npm install --save @advanced-rest-client/arc-request-settings-panel

In an html file

<html>
  <head>
    <script type="module">
      import '@advanced-rest-client/arc-request-settings-panel/arc-request-settings-panel.js';
    </script>
  </head>
  <body>
    <arc-request-settings-panel></arc-request-settings-panel>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@advanced-rest-client/arc-request-settings-panel/arc-request-settings-panel.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
    <arc-request-settings-panel></arc-request-settings-panel>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Installation

git clone https://github.com/advanced-rest-client/arc-request-settings-panel
cd api-url-editor
npm install
npm install -g polymer-cli

Running the demo locally

polymer serve --npm
open http://127.0.0.1:<port>/demo/

Running the tests

polymer test --npm