/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-regular-cookies-1cc5b61ebdf4-regular-cookies-s0717-c0000.md
Regular cookies - hono-docs
Regular cookies Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt regular cookies Summary Content
Regular cookies
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#regular-cookies
Summary
## Content
```ts
app.get('/cookie', (c) => {
setCookie(c, 'cookie_name', 'cookie_value')
const yummyCookie = getCookie(c, 'cookie_name')
deleteCookie(c, 'cookie_name')
const allCookies = getCookie(c)
// ...
})