install bootstrap in express pug

C++
const bodyParser = require('body-parser');
...
app.use(bodyParser.urlencoded({ extended: true }));
app.use('/', routes);

module.exports = app;
npm install body-parser

Source

Also in C++: