mongoose-friendly

0.1.4 • Public • Published

mongoose-friendly

Build Status Dependency Status NPM version

Friendly URLs for you Mongoose models.

Usage

Simply install the mongoose-friendly plugin in your schema like this:

var mongoose = require('mongoose');
var friendly = require('mongoose-friendly');
var MySchema = new mongoose.Schema({ title: String });
MySchema.plugin(friendly);

A static method findByFriendly is added to your schema, and you can use it as if you were using findById.

Here are the options (as defaults) you can pass when installing the plugin:

MySchema.plugin(friendly, {
  source: 'title',  // Attribute to generate the friendly version from.
  friendly: 'slug', // Attribute to set the friendly version of source.
  addIndex: true,   // Sets {unique: true} as index for the friendly attribute.
  findById: true    // Turns findById into an alias for findByFriendly.
});

License

This is licensed under the feel-free-to-do-whatever-you-want-to-do license.

Readme

Keywords

none

Package Sidebar

Install

npm i mongoose-friendly

Weekly Downloads

3

Version

0.1.4

License

BSD

Last publish

Collaborators

  • gtramontina