Skip to content

gmax9803/mongooseodm-uuid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to mongooseodm-uuid 👋

Version Documentation Maintenance License: ISC

A Custom Mongoose UUID SchemaType, to use for MongoDB Binary UUIDs (Subtype 0x03 and 0x04) (Subtype 0x03 follows the Java Driver implementation.)

Please note that inserting subtype 0x03 Binary UUIDs to the db is currently not supported

Install

npm i mongooseodm-uuid

Run tests

npm run test

Usage

1) Register the SchemaType (insert somewhere like your index.js):

require('mongooseodm-uuid');

2) Use the SchemaType in a Mongoose Schema

const mongoose = require("mongoose");
const {MUUID} = require('mongooseodm-uuid');

const Schema = mongoose.Schema;

const HavocPunishmentSchema = new Schema({
    uuid: MUUID,
});

OR

const mongoose = require("mongoose");
const {MUUID} = require('mongooseodm-uuid');

const Schema = mongoose.Schema;

const HavocPunishmentSchema = new Schema({
    uuid: mongoose.Types.MUUID,
});

Author

👤 Max (https://github.com/gmax9803) ([email protected])

0xd3C43729AfE9751C29ff756531E105A76a8Ff9Cf

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2020 Max (https://github.com/gmax9803) ([email protected]).
This project is ISC licensed.


This README was generated with ❤️ by readme-md-generator