# express-dyngodb

> Simple dyngodb middleware for express

Latest version **0.1.3** (published 2014-05-28) · Apache2 license · 0 weekly downloads

## Install

```sh
npm install express-dyngodb
pnpm add express-dyngodb
yarn add express-dyngodb
bun add express-dyngodb
```

## 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.1.3 |
| Published | 2014-05-28 |
| First published | 2014-05-21 |
| Weekly downloads | 0 |
| License | Apache2 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | aaaristo |
| Maintainers | aaaristo |
| Keywords | dyngodb, express, middleware |

## Links

- npm: https://www.npmjs.com/package/express-dyngodb
- Repository: https://github.com/aaaristo/express-dyngodb
- Issues: https://github.com/aaaristo/express-dyngodb/issues
- npm.io page: https://npm.io/package/express-dyngodb

## Dependencies (3)

- [aws-sdk](https://npm.io/package/aws-sdk.md) ^2.0.0-rc.17
- [optimist](https://npm.io/package/optimist.md) ^0.6.1
- [underscore](https://npm.io/package/underscore.md) ^1.6.0

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 0.1.3 (latest) — 2014-05-28
- 0.1.2 — 2014-05-23
- 0.1.1 — 2014-05-21
- 0.1.0 — 2014-05-21

## README

express-dyngodb
==============

Simple express middleware for dyngodb

## Installation

```sh
$ npm install express-dyngodb
```

## API


*app.js*
```js
var express    = require('express'),
    gson       = require('express-dyngodb');

var app = express();

app.use(dyngodb());

app.get('/some/:id',function (req, res, next)
{
    req.db.test.findOne({ _id: req.params.id },
               .result(function (result)
               {
                  res.send(result);
               })
               .error(next);
})
```

## Local

To use [DynamoDB Local](http://aws.typepad.com/aws/2013/09/dynamodb-local-for-desktop-development.html)
```sh
$ node app.js --local
```

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