###set:
cookie('mytestcookie', 'value', { path: '/', expires: 10 });
path: '/'
set cookie to all pages
expires: 10
set to 10 days, or can set date (new Date())
domain: 'mydomain'
The domain where the cookie is valid
secure: true
The cookie transmission requires a secure protocol (https)
###get: var value = cookie('mytestcookie');
return cookie value or null
###remove cookie('mytestcookie', null);