# mailgun-listen

> mailgun-listen

Latest version **0.0.1** (published 2014-09-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install mailgun-listen
pnpm add mailgun-listen
yarn add mailgun-listen
bun add mailgun-listen
```

## 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.1 |
| Published | 2014-09-19 |
| First published | 2014-09-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Christian Tellnes |
| Maintainers | tellnes |
| Keywords | mailgun, listen, inbound, incoming, mail, email |

## Links

- npm: https://www.npmjs.com/package/mailgun-listen
- Repository: https://github.com/tellnes/mailgun-listen
- Issues: https://github.com/tellnes/mailgun-listen/issues
- npm.io page: https://npm.io/package/mailgun-listen

## Dependencies (2)

- [lru-cache](https://npm.io/package/lru-cache.md) ^2.5.0
- [body-parser](https://npm.io/package/body-parser.md) ^1.8.2

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 0.0.1 (latest) — 2014-09-19

## README

# mailgun-listen

Verifies the signature and responds with correct status code on success.

## Express Example

```js
var express = require('express')
  , mailgun = require('mailgun-listen')

var app = express()

app.post('/', mailgun({ key: 'key-123' }, function (mail, done) {
  console.log(mail)
  done()
}))

app.listen(8080)
```

## Standalone Example

```js
var mailgun = require('mailgun-listen')

mailgun({ key: 'key-123' }, function (mail, done) {
  console.log(mail)
  done()
}).listen(8080)
```


## Install

    npm install mailgun-listen

## License

MIT

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