electron-cookies
electron-cookies copied to clipboard
Cookie expiration
Have you given any thought to cookie expiration?
key=value; Expires=Thu, 01-Jan-1970 00:00:01 GMT
It didn't handle any cookie expiration at the moment, on the other hand, it's killing the cookie if u are trying to set with the expiration date.
if (parts.length === 2) { key = parts[0], value = parts[1]; } else { value = parts[0]; key = ''; }
I would like to see some form of cookie expiration done as well.