es-count-by
v1.0.1
Published
Get top field values from ES
Readme
Elasticsearch Count By
Like _.countBy from lodash, but over Elasticsearch
Install
$ yarn add es-count-byUsage
import {init, countBy} from 'es-count-by';
init('http://localhost:9200');
const counts = await countBy('type'); // {a: 1, b: 2, c: 3}