3.0.1 • Published 6 years ago
@advanced-rest-client/response-history-saver v3.0.1
response-history-saver
An element that saves requests history in a datastore.
History data is different that request history. It keeps a HAR-like object with history details.
The element handles api-response event and transforms response into a data object and stores in history-data datastore.
Originally it was designed to support API assistant, however this was removed in ARC 10 and currently it has no practical use in ARC. It may change in the future.
Usage
Installation
npm install --save @advanced-rest-client/response-history-saverIn a LitElement
import { LitElement, html } from 'lit-element';
import '@advanced-rest-client/response-history-saver/response-history-saver.js';
class SampleElement extends LitElement {
render() {
return html`
<response-history-saver></response-history-saver>
`;
}
}
customElements.define('sample-element', SampleElement);Development
git clone https://github.com/advanced-rest-client/response-history-saver
cd response-history-saver
npm installRunning the tests
npm testAPI components
This components is a part of API components ecosystem