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-manager
In 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 install
Running the demo locally
npm start
Running the tests
npm test
API components
This components is a part of API components ecosystem