Вы можете сделать все это управляемым таблицами, что является техникой перехода, когда у вас есть много похожих данных, используемых в повторяющихся функциях:
const routeData = [
['/todoHome', 'todoHome', 'My Todo List!!'],
['/articles', 'articles', 'Articles To Read'],
['/', 'index', 'Homepage'],
['/index', 'index', 'Homepage'],
['/primary', 'primaryurls', 'Primary DC URLs'],
['/standyby', 'standbyurls', 'Standby DC URLs']
];
// insert routes from the data in the table
for (const [path, name, title] of routeData) {
app.get(path, (req, res) => {
res.render(name, {title});
});
}