Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexistm/faster-cookie-parser
A cookie parse which is finally simple.
https://github.com/alexistm/faster-cookie-parser
Last synced: 1 day ago
JSON representation
A cookie parse which is finally simple.
- Host: GitHub
- URL: https://github.com/alexistm/faster-cookie-parser
- Owner: AlexisTM
- License: mit
- Created: 2019-01-20T16:08:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-31T19:58:46.000Z (almost 5 years ago)
- Last Synced: 2024-08-10T22:54:43.991Z (3 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# faster-cookie-parser
A cookie parser which is finally simple and short. This library is currently only 10 lines long.## Install
```bash
npm install --save faster-cookie-parser
```## Usage
```js
const cookieParser = require('faster-cookie-parser');
let cookie = cookieParser("token=123token; user=AlexisTM");
/*
{
token: "123token",
user: "AlexisTM"
}
*/
```# Credits
- [@AlexisTM](http://github.com/AlexisTM)