Glorious Cookie
Install
Glorious Cookie is available via npm:
npm i gcookie --save
Once installed, you just need insert it on your page:
Usage
Intending to be as simple as possible, Glorious Cookie has only three methods.
Set
/*** @key: String [required]** @value: String [required]** @days: Number [optional] - If not provided, cookie is removed when the user closes the browser.** @path: String [optional] - If not provided, cookie is valid for the entire site.*/gcookie;
Get
/*** @key: String [optional] - If not provided, all cookies will be returned.*/gcookie;
Remove
/*** @key: String [required]** @path: String [optional] - If you have specified a path on gcookie.set(),** it will be required here.*/gcookie;
Note: If cookies are not available, a warning will be logged when trying to set or remove a cookie.