in the search constant I store the word to search for in the two models users and notices, if it finds a field that starts or has the word searched for we show it in a res.json.
function getTodo(req, res = response, next) {
const busqueda = req.params.busqueda;
const regex = new RegExp(busqueda, 'i');
Usuario.find({
nombre: regex
})
.exec((err, usuarios) => {
if (err) return errorHandler(err)
console.log(usuarios)
})
Aviso.find( {
nombre: regex
})
.exec((err, avisos) => {
if (err) return errorHandler(err)
console.log(avisos)
})
.then((usuarios, avisos) => {
res.json({ usuarios, avisos })
})
}