Skip to content

nvdnkpr/mongoose-regexp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#mongoose-regexp

Provides Mongoose support for storing RegExp.

Build Status

Example:

var mongoose = require('mongoose')
require('mongoose-regexp')(mongoose);

var mySchema = Schema({ reg: RegExp });
var M = mongoose.model('RegExp', mySchema);

var m = new M;
m.reg = /^mongodb/i;
m.save(function (err) {
  M.findById(m._id, function (err, doc) {
    var ok = m.reg.test("MongoDB allows storing RegExps!");
    console.log(ok); // true
  });
});

install

npm install mongoose-regexp

compatibility with other languages

There are no guarantees that RegExps created and stored using another driver and retreived using this module will compile or behave the same as originally intended. This module works best when it is known that RegExps stored and retrevied were generated in Node.js.

LICENSE

About

Provides mongoose support for storing RegExp

Resources

License

Stars

Watchers

Forks

Packages

No packages published