/mongo-count-by

Get top field values from MongoDB

Primary LanguageJavaScript

MongoDB Count By

Like _.countBy from lodash, but over MongoDB collection

Install

$ yarn add mongo-count-by

Usage

import {init, countBy} from 'mongo-count-by';

await init('mongodb://localhost:27017');

const counts = await countBy('type'); // {a: 1, b: 2, c: 3}