Ja, unieke indexen worden nog steeds ondersteund in Mongoose; zie hier en hier in de huidige documenten.
Voorbeelden uit de gelinkte documenten:
var s = new Schema({ date: { type: Date, index: { unique: true, expires: '1d' }});
var s = new Schema({ name: { type: String, unique: true }});
Schema.path('my.path').index({ unique: true, sparse: true });
Schema.path('name').index({ unique: true });