Socket
Socket
Sign inDemoInstall

virtual-cookies

Package Overview
Dependencies
4
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    virtual-cookies

Virtual cookies store to manage Request/Response associations.


Version published
Weekly downloads
1.3K
decreased by-27.49%
Maintainers
1
Install size
3.77 MB
Created
Weekly downloads
 

Readme

Source

Latest version

virtual-cookies

Virtual cookie store to manage request/response cookies associations in a unique collection.

API

set(req: Request, res: Response)

Sets the response cookies in the store associated with the given request origin.

store.set(
  new Request('https://mswjs.io'),
  new Response(null, {
    headers: new Headers({
      'set-cookie': 'id=abc-123',
    }),
  })
)

get(req: Request)

Retrieves the cookies relevant to the given request's origin.

store.get(new Request('https://mswjs.io'))

.get() respects the req.credentials policy.

Executing this command returns a Map instance with the request cookies:

Map {
  "id" => { name: "id", value: "abc-123" }
}

getAll()

Returns all the cookies in the store.

Executing .getAll() method returns a Map instance with request cookies grouped by request origin.

Map {
  "https://mswjs.io" => Map {
    "id" => { name: "id", value: "abc-123" }
  }
}

deleteAll(req: Request)

Removes all the cookies associated with the given request's origin.

persist()

Persists the current store state in the localStorage.

hydrate()

Hydrates the store values from the previously persisted state in localStorage.

clear()

Removes all the cookies from the store, producing a nice and shiny empty store.

Credits

Original idea by Christoph Guttandin.

FAQs

Last updated on 05 Dec 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc