gcookie

0.2.0 • Public • Published

Glorious Cookie

CircleCI Test Coverage Code Climate

Install

Glorious Cookie is available via npm:

npm i gcookie --save

Once installed, you just need insert it on your page:

<script src="/node_modules/gcookie/dist/gcookie.min.js"></script>

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.set(key, value, days, path);

Get

/*
** @key: String [optional] - If not provided, all cookies will be returned.
*/
gcookie.get(key);

Remove

/*
** @key: String [required]
** @path: String [optional] - If you have specified a path on gcookie.set(),
**                            it will be required here.
*/
gcookie.remove(key, path);

Note: If cookies are not available, a warning will be logged when trying to set or remove a cookie.

Readme

Keywords

none

Package Sidebar

Install

npm i gcookie

Weekly Downloads

0

Version

0.2.0

License

MIT

Last publish

Collaborators

  • rcamargo