aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/routes.js
blob: c6590daeb18dd4c9e739d2ad0ae2ef846ce70261 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import {Router} from 'express';

const routes = Router();

/**
 * GET home page
 */
routes.get('/', (req, res) => {
    res.render('index');
});

/**
 * GET /list
 *
 * This is a sample route demonstrating
 * a simple approach to error handling and testing
 * the global error handler. You most certainly want to
 * create different/better error handlers depending on
 * your use case.
 */
routes.get('/list', (req, res, next) => {
    const {title} = req.query;

    if (title == null || title === '') {
        // You probably want to set the response HTTP status to 400 Bad Request
        // or 422 Unprocessable Entity instead of the default 500 of
        // the global error handler (e.g check out https://github.com/kbariotis/throw.js).
        // This is just for demo purposes.
        next(new Error('The "title" parameter is required'));
        return;
    }

    res.render('index', {title});
});

export default routes;