Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 554 Bytes

no-cookies.md

File metadata and controls

13 lines (7 loc) · 554 Bytes

Do not use HTTP cookies in modern applications (no-cookies)

HTTP cookies are an old client-side storage mechanism with inherent risks and limitations. Use Web Storage, IndexedDB or other modern methods instead.

Cookies should be used only in rare and justifiable cases after thorough security review.

Further Reading

Related Rules