# koa-epost

> Simple Koa middleware to parse post data

Latest version **0.0.3** (published 2015-02-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install koa-epost
pnpm add koa-epost
yarn add koa-epost
bun add koa-epost
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2015-02-13 |
| First published | 2014-09-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Robert Graczyk |
| Maintainers | graczykr |
| Keywords | koa, middleware, post, body, parse |

## Links

- npm: https://www.npmjs.com/package/koa-epost
- Repository: https://github.com/graczykr/koa-epost
- Issues: https://github.com/graczykr/koa-epost/issues
- npm.io page: https://npm.io/package/koa-epost

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

- 0.0.3 (latest) — 2015-02-13
- 0.0.2 — 2015-02-08
- 0.0.1 — 2014-09-04

## README

# Koa-Easy-Post
## Simple Post Data Extraction for Koa

## New in 0.0.3

Read data more efficiently.

Instead of a lengthy tutorial, have a look at the following example:

```
// Assume app to be a koa application instance

var post = require('koa-epost');

app.use(post);

app.use(function *(next) {
  this.body = 'Post data received: \n';
  this.body += JSON.stringify(this.post);
});
```

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