3.0.3 • Published 6 years ago
@advanced-rest-client/cookie-manager v3.0.3
cookie-manager
A manager for session cookies. Renders a list of cookies that can be edited.
Cooke access is different in web, Chrome App, and Electron app. Each application should handle cookies requests by their own.
Usage
Installation
npm install --save @advanced-rest-client/cookie-managerIn a LitElement
import { LitElement, html } from 'lit-element';
import './node_modules/@advanced-rest-client/cookie-manager/cookie-manager.js';
class SampleElement extends LitElement {
render() {
return html`
<cookie-manager></cookie-manager>
`;
}
}
customElements.define('sample-element', SampleElement);Installation
git clone https://github.com/advanced-rest-client/cookie-manager
cd cookie-manager
npm installRunning the demo locally
npm startRunning the tests
npm testAPI components
This components is a part of API components ecosystem