JavaScript-utilities to handle cookies everywhere.
npm install @yurkimus/cookies
"@yurkimus/cookies": "npm:@yurkimus/cookies"
"@yurkimus/cookies": "github:yurkimus/cookies"
"@yurkimus/cookies": "https://raw.githubusercontent.com/yurkimus/cookies/main/source/index.js"
read :: string -> string -> string
let cookie = 'name=John; age=30; role=admin'
let age = read('age', cookie) // => '30'
let [age, name] = ['age', 'name']
.map(key => read(key))
.map(reader => reader(cookie)) // => ['30', 'John']
parse :: string -> object
parse('name=John; age=30; role=admin') // => { name: 'John', age: '30', role: 'admin' }
serialize :: string -> * -> [(string, string)] -> string
let attributes = [
['path', '/'],
['expires', 'Wed, 21 Oct 2026 07:28:00 GMT'],
]
serialize('name', 'John', attributes) // => 'name=John; path=/; expires=Wed, 21 Oct 2026 07:28:00 GMT'