# faster-cookie-parser

> A faster cookie parser.

Latest version **1.0.1** (published 2020-01-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install faster-cookie-parser
pnpm add faster-cookie-parser
yarn add faster-cookie-parser
bun add faster-cookie-parser
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2020-01-31 |
| First published | 2019-01-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | AlexisTM |
| Maintainers | alexistm |
| Keywords | fast, cookie, parser |

## Links

- npm: https://www.npmjs.com/package/faster-cookie-parser
- Repository: https://github.com/AlexisTM/faster-cookie-parser
- Homepage: https://github.com/AlexisTM/faster-cookie-parser#readme
- Issues: https://github.com/AlexisTM/faster-cookie-parser/issues
- npm.io page: https://npm.io/package/faster-cookie-parser

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2020-01-31
- 1.0.0 — 2019-01-20

## 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)

---
_Source: https://npm.io/package/faster-cookie-parser · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
