This topic created in 3894 days ago, the information mentioned may be changed or developed.
app.post ('/tasks',function (req, res ){
var task = new Task (req.body.task );
task.save (function (err ) {
if (err ) {
throw err;
}
else {
res.redirect ('/tasks/new');
}
});