MongoDB Index toolkit for humans.
var IndexModel = require('mongodb-index-model');
// e.g. from collection.getIndexes()
var indexDefs = [
  {
    'v': 1,
    'key': {
      '_id': 1
    },
    'name': '_id_',
    'ns': 'mongodb.fanclub'
  },
  {
    'v': 1,
    'key': {
      'last_login': -1
    },
    'name': 'last_login_-1',
    'ns': 'mongodb.fanclub'
  }
];
var indexes = new IndexModel(indexDefs, {parse: true});
// get index by `<namespace>.<name>`
indexes.get('mongodb.fanclub.last_login_-1').compound  // returns `false`
// get index by `<name>` (use `name` ampersand index)
indexes.get('_id_', 'name').unique // returns `true`npm install --save mongodb-index-model
npm test
A collection can have many indexes.
An index can have one or more field/value pairs.
We use JSON notation to represent and index definition as a document of field/value pairs, e.g. { last_name: 1, location: "2dsphere" }.
The index field corresponds to a field in the documents stored in the collection.
The value defines the type, and possibly subtype or sort order of the index on this field.
An index can have additional properties.
Index field types are the following:
- regular (note: the MongoDB Documentation does not mention this type of index explicitly, but rather groups indexes into "single", "compound" and "multi-key". This distinction is not necessary here and would complicate the mental model). The values for regular index fields indicates sort order: 
1for ascending, or-1for descending sort order. - text, with the only possible value 
text - hashed, with the only possible value 
hashed - geospatial, where the value specifies the sub-type of geo index, which can be 
2dfor a flat, cartesian geometry,2dspherefor an index assuming a spherical geometry, orgeoHaystackfor a (rarely used) haystack index. 
In summary, given the different types of index and their allowed values, a field value in an index defintion can be one of: 1, -1, "text", "hashed", "2d", "2dsphere", "geoHaystack".
An index can have one or more properties. These are independent of the fields and values and defined per index. Index properties are:
TTL"time to live", automatically deletes documents after some time.uniqueenforces that no duplicate values exist for this fieldsparsemeans documents without the specified field(s) are not indexed, default is that every document is indexedpartialtakes a filter expression and only indexes documents matching that expression. similar to sparse but more flexible.
Index properties are specified as a separate second parameter to the createIndex() method. There are limitations which index types and properties can be used together, not every combination is possible.
Apache 2.0
