mongoose-plugin-tags

1.2.2 • Public • Published

mongoose-plugin-tags

Codeship Status for CentralPing/mongoose-plugin-tags Code Climate for CentralPing/mongoose-plugin-tags Dependency Status for CentralPing/mongoose-plugin-tags

A mongoose.js plugin to automatically generate tags from a document path.

Note: tagging updates occur when document is saved.

Installation

npm i --save mongoose-plugin-tags

API Reference

Example

var tagsPlugin = require('mongoose-plugin-tags');
var schema = Schema({...});
schema.plugin(tagsPlugin[, OPTIONS]);

mongoose-plugin-tags~options

Kind: inner property of mongoose-plugin-tags

Param Type Default Description
[options] object
options.path string "tags" the path to create the propterty for storing tags.
options.optionKey string "tags" the path options key to mark paths for inclusion in tagging.
options.options object property options to set (type will always be an Array of String). (e.g. {select: false})
options.match string "/[##][a-z_0-9]+/g" the regular expression to match tags.
options.map string "function" the function to strip tag indicators (e.g. '#'). Defaults to stripping the first character from a tag.

Examples

With A Single Field

var tagsPlugin = require('mongoose-plugin-tags');
var schema = Schema({
  foo: {
    type: String,
    tags: true // indicates that foo should be included in tagging
  },
  bar: {type: String} // will not be included
});
schema.plugin(tagsPlugin);

var Foo = mongoose.model('Foo', schema);
var foo = Foo(); // foo.tags --> []
foo.foo = 'I just leanered what a hashtag is #BehindTheTimes'; // foo.tags --> []
foo.save(); // foo.tags --> ['BehindTheTimes']

With Mulitple Fields

var tagsPlugin = require('mongoose-plugin-tags');
var schema = Schema({
  foo: {
    type: String,
    tags: true // indicates that foo should be included in tagging
  },
  bar: {
    type: String,
    tags: true // indicates that bar should be included in tagging
  }
});
schema.plugin(tagsPlugin);

var Foo = mongoose.model('Foo', schema);
var foo = Foo(); // foo.tags --> []
foo.foo = 'You know what grinds my gears? #rant'; // foo.tags --> []
foo.bar = '#People #who #use #hashtags #like #this'; // foo.tags --> []
foo.save(); // foo.tags --> ['rant', 'people', 'who', 'use', 'hashtags', 'like', 'this']

License

Apache 2.0

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.2.2
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.2.2
    1
  • 1.2.1
    0

Package Sidebar

Install

npm i mongoose-plugin-tags

Weekly Downloads

1

Version

1.2.2

License

Apache 2.0

Last publish

Collaborators

  • centralping-admin
  • jasoncust