mongoose plugin to add tags and taggable behaviour
npm install @lykmapipo/mongoose-taggable







mongoose plugin to add tags and taggable behaviour.
- NodeJS v13+
- Npm v6.12+
- MongoDB v4+
- Mongoose v6+
sh
$ npm install --save mongoose @lykmapipo/mongoose-taggable
`Usage
`javascript
import mongoose from 'mongoose';
import taggable from '@lykmapipo/mongoose-taggable';const RepoSchema = new Schema({ name: { type: String, taggable: true } });
RepoSchema.plugin(taggable);
const Repo = mongoose.model('Repo', RepoSchema);
const repo = new Repo({ name: 'any-js'});
repo.tag();
repo.tag('js', 'nodejs', 'express', 'mongoose');
repo.untag('angular');
`API
$3
A taggable schema plugin. Once applied to a schema will allow to compute tags from taggable schema field and and tag and untag instance methods####
options: Object
- blacklist: String | String[] - List of word(s) not allowed to be used for tagging.
- fresh: Boolean - Whether to recompute fresh tags. Default to false.
- hook: String - When to run tagging hook. Default to pre validate.Example
`js
const RepoSchema = new Schema({ name: { type: String, taggable: true } });
RepoSchema.plugin(taggable);
const Repo = mongoose.model('Repo', RepoSchema);const RepoSchema = new Schema({ name: { type: String, taggable: true } });
RepoSchema.plugin(taggable, { blacklist: ['unknown'] });
const Repo = mongoose.model('Repo', RepoSchema);
`
$3
Tag a model instance with provided tagsExample:
`js
user.tag('js', 'dev', 'conf');
`$3
Untag a model instance to not include provided tagsExample:
`js
user.untag('conf');
`Testing
* Clone this repository* Install all development dependencies
`sh
$ npm install
`
* Then run test
`sh
$ npm test
``Copyright (c) lykmapipo & Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.