Bootstrap is now a supported node package by the bootstrap guys.
https://www.npmjs.org/package/bootstrap
What this means is you can now require bootstrap in code. So.
npm install bootstrap --save
npm install jquery --save
foo.js
var $ = require('jquery');
window.$ = $;
require('bootstrap');