I like to to go find a user in mongoDb by looking for a user called value. The problem with:
username: \'peter\'
is that i dont find it if
This is what I'm using.
module.exports.getBookByName = function(name,callback){ var query = { name: {$regex : name} } User.find(query,callback); }