Response
res.json();
res.sendFile(path.join(__dirname, 'index'));
works best with absolute path
res.send("Hello");
res.redirect('/events');
doesn't work well with react router
res.render('index');
res.sendStatus(200);
Render
To render template files, set view folder and static folder.
Relative to dir you launch node process from
Examples
Respond with Error
See http-errors
Last updated