Package Exports
- mongoose-to-swagger
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mongoose-to-swagger) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
mongoose-to-swagger
Conversion library for transforming Mongoose schema objects into Swagger schema definitions.
Installation
$ npm install --save mongoose-to-swagger
Overview
Converts a mongoose model into a swagger schema.
Usage
const mongoose = require('mongoose');
const m2s = require('mongoose-to-swagger');
const Cat = mongoose.model('Cat', { name: String });
const swaggerSchema = m2s(Cat);
console.log(swaggerSchema);
Contributing
We look forward to seeing your contributions!
License
MIT © Ben Lugavere