# enormis

> Simple modern MongoDB driver

Latest version **0.3.2** (published 2018-01-28) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install enormis
pnpm add enormis
yarn add enormis
bun add enormis
```

## 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.3.2 |
| Published | 2018-01-28 |
| First published | 2016-04-18 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Iddan Aaronsohn |
| Maintainers | iddan |
| Keywords | mongodb, shell, es6 |

## Links

- npm: https://www.npmjs.com/package/enormis
- Repository: https://github.com/iddan/enormis
- Issues: https://github.com/iddan/enormis/issues
- npm.io page: https://npm.io/package/enormis

## Dependencies (2)

- [mongodb](https://npm.io/package/mongodb.md) ^3.0.1
- [@types/mongodb](https://npm.io/package/@types/mongodb.md) ^3.0.5

## Alternatives

- [angular-pipes](https://npm.io/package/angular-pipes.md) — 5.6K weekly downloads
- [@ng-web-apis/midi](https://npm.io/package/@ng-web-apis/midi.md) — 2.6K weekly downloads
- [happn-3](https://npm.io/package/happn-3.md) — 1.6K weekly downloads
- [@opensip-cli/lang-go](https://npm.io/package/@opensip-cli/lang-go.md) — 1.2K weekly downloads
- [mongoose-typescript](https://npm.io/package/mongoose-typescript.md) — 85 weekly downloads

## Recent versions

- 0.3.2 (latest) — 2018-01-28
- 0.3.1 — 2018-01-27
- 0.3.0 — 2018-01-27
- 0.2.4 — 2016-05-09
- 0.2.3 — 2016-05-06
- 0.2.2 — 2016-05-06
- 0.2.1 — 2016-05-06
- 0.2.0 — 2016-04-21
- 0.1.0 — 2016-04-18

## README

# Enormis

Simple modern MongoDB driver

Use MongoDB like this:

```javascript
const { Client } = require('enormis')

async function getUsers() {
    const client = await Client('mongodb://localhost:27017');
    const users = await client.test.user.find({});
    client.close();
    return users;
}
```

Instead of:

```javascript 
const { MongoClient } = require('mongodb')

async function getUsers() {
    const client = await MongoClient.connect('mongodb://localhost:27017');
    const users = await client.db('test').collection('user').find({}).toArray();
    client.close();
    return users;
}
```

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