All Projects → ethanent → lightcookie

ethanent / lightcookie

Licence: other
Node cookie parsing and serialization

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to lightcookie

Herbe
Daemon-less notifications without D-Bus. Minimal and lightweight.
Stars: ✭ 235 (+968.18%)
Mutual labels:  lightweight
Yay Evil Emacs
😈 A lightweight literate Emacs config with even better "better defaults". Shipped with a custom theme!
Stars: ✭ 250 (+1036.36%)
Mutual labels:  lightweight
ThreadPool2
Lightweight, Generic, Pure C++11 ThreadPool
Stars: ✭ 28 (+27.27%)
Mutual labels:  lightweight
Quick Picture Viewer
🖼️ Lightweight, versatile desktop image viewer for Windows. The best replacement for the default Windows photo viewer.
Stars: ✭ 237 (+977.27%)
Mutual labels:  lightweight
Gunslinger
C99, header-only framework for games and multimedia applications
Stars: ✭ 246 (+1018.18%)
Mutual labels:  lightweight
Yalla
YallaJS, ES6 Templating Engine.
Stars: ✭ 253 (+1050%)
Mutual labels:  lightweight
Imdn
Lightweight Image Super-Resolution with Information Multi-distillation Network (ACM MM 2019, Winner Award of ICCVW AIM 2019 Constrained SR Track1&Track2)
Stars: ✭ 229 (+940.91%)
Mutual labels:  lightweight
string-combinations
A simple, low-memory footprint function to generate all string combinations from a series of characters.
Stars: ✭ 25 (+13.64%)
Mutual labels:  lightweight
Pine
A modern, native macOS markdown editor
Stars: ✭ 2,818 (+12709.09%)
Mutual labels:  lightweight
simple-jwt-provider
No description or website provided.
Stars: ✭ 33 (+50%)
Mutual labels:  lightweight
Task Easy
A simple, customizable, and lightweight priority queue for promises.
Stars: ✭ 244 (+1009.09%)
Mutual labels:  lightweight
Vpp
Modern C++ vulkan utility library.
Stars: ✭ 245 (+1013.64%)
Mutual labels:  lightweight
Pareto.js
An extremely small, intuitive and fast functional utility library for JavaScript
Stars: ✭ 254 (+1054.55%)
Mutual labels:  lightweight
Libuwsc
A Lightweight and fully asynchronous WebSocket client library based on libev
Stars: ✭ 237 (+977.27%)
Mutual labels:  lightweight
Cookie-Clicker-Source-Code
Cookie Clicker source code for... educational purposes...
Stars: ✭ 74 (+236.36%)
Mutual labels:  cookie
V Emoji Picker
🌟 A Lightweight and customizable package of Emoji Picker in Vue using emojis natives (unicode).
Stars: ✭ 231 (+950%)
Mutual labels:  lightweight
Api
Minimal, extremely fast, lightweight Ruby framework for HTTP APIs
Stars: ✭ 252 (+1045.45%)
Mutual labels:  lightweight
arrow
An interpreted programming language
Stars: ✭ 21 (-4.55%)
Mutual labels:  lightweight
hugoblog
Hugoblog is responsive, simple, and clean that would fit for your personal blog based on Hugo Theme Static Site Generator (SSG)
Stars: ✭ 48 (+118.18%)
Mutual labels:  lightweight
Moveto
A lightweight scroll animation javascript library without any dependency
Stars: ✭ 2,746 (+12381.82%)
Mutual labels:  lightweight

lightcookie logo


Super lightweight cookie parser and serializer

Full documentation | GitHub | NPM

Installation

npm i --save lightcookie

Parsing cookie strings

const lightcookie = require('lightcookie')

lightcookie.parse('foo=bar; copyright=%C2%A9;another=test') // {foo: 'bar', copyright: '©', another: 'test'}

Serializing objects to cookie strings

lightcookie.serialize({
	name: 'Ethan',
	'HttpOnly': null
}) // 'name=Ethan;HttpOnly'

Why lightcookie?

lightcookie is super lightweight. It's over much more lightweight than cookie, another popular cookie package. lightcookie is the way to go for efficiency as it parses using JS regular expressions!

Documentation

Have a look at the full documentation for details about using the library!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].