https://github.com/eldoy/wcookie
Server and browser cookie handling
https://github.com/eldoy/wcookie
Last synced: 5 months ago
JSON representation
Server and browser cookie handling
- Host: GitHub
- URL: https://github.com/eldoy/wcookie
- Owner: eldoy
- Created: 2019-10-16T16:29:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-04-25T16:18:09.000Z (about 1 year ago)
- Last Synced: 2025-07-21T03:30:07.921Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 382 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wcookie
Server cookie handling for Node.js.
### Install
```
npm i wscookie
```
### Usage
Check out `server.js` in the source code for a running server example.
```js
// Server setup
var http = require('http')
var cookie = require('wcookie')
http.createServer(function (req, res) {
// Enable cookies
cookie(req)
// Get cookie
var name = req.cookie('name')
// Set cookie
req.cookie('name', 'hello')
// Delete cookie
req.cookie('name', null)
// Set response cookie headers
if (req.cookieJar.length) {
res.setHeader('set-cookie', req.cookieJar.headers)
}
}).listen(8124)
```
ISC licensed. Enjoy!
Created by [Eldøy Projects](https://eldoy.com)