Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
koa-cookies
Advanced tools
Set, clear, and parse cookies in your Koa application.
npm i koa-cookies
// set up your koa server, koa-router, etc.
import { clearCookie, setCookie, parseCookie } from 'koa-cookies'
// Use in routes
app.get('/foo', async (ctx, next) => {
await setCookie('bar', 'baz')(ctx) // => void
})
app.get('/things', async (ctx) => {
await clearCookie('foo')(ctx) // => void
})
app.get('/stuff', async (ctx) => {
await parseCookie('bar')(ctx) // => string value for this cookie key
})
// Use as middlewares
app.use(setCookie('foo', 'bar', config)) // set on every request
app.use(clearCookie('baz', config)) // clear on every request
app.use(parseCookie()) // always add all cookies to ctx.cookies
The config
argument is optional. Defaults:
setCookieConfig = {
domain: ctx.host,
maxAge: one week,
expires: one week from now
}
clearCookieConfig = {
domain: ctx.host,
maxAge: 1 second,
expires: 1970-01-01T00:00:00.001Z
}
FAQs
Set, clear, and parse cookies in your Koa application
The npm package koa-cookies receives a total of 6,711 weekly downloads. As such, koa-cookies popularity was classified as popular.
We found that koa-cookies demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.