Get data from mongodb (mongoose) to jade view Get data from mongodb (mongoose) to jade view mongoose mongoose

Get data from mongodb (mongoose) to jade view


You're on the right track! Just put the rendering in the callback from the find:

app.get('/help', function(req, res){  Material.find(function (err, materials){    res.render('help', {materials: materials});  });});