Да, уникалните индекси все още се поддържат в Mongoose; вижте тук и тук в текущите документи.
Примери от свързаните документи:
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 });