A Meteor package which just includes Bootstrap5 in your application.
This prevent you to manually include each and every wanted Bootstrap5 file. Just use this package, and enjoy.
This Meteor package is installable with the usual command:
meteor add pwix:ui-bootstrap5
meteor npm install @popperjs/core bootstrap --saveNothing to do here, but do not forget to install the required NPM packages (see below).
Starting with v2.1, if you would need the bootstrap global object, you can later:
import { bootstrap } from 'meteor/pwix:ui-bootstrap5';and so, maybe, if for example you would wish use Bootstrap tooltips:
const tooltipsList = [].slice.call( document.querySelectorAll( '[data-bs-toggle="tooltip"]' ));
tooltipsList.map( function( elt ){
return new bootstrap.Tooltip( elt );
});The required js and css files are automatically made available on the client.
None at the moment.
Starting with v 0.3.0, and in accordance with advices from the Meteor Guide, we no more hardcode NPM dependencies in the Npm.depends clause of the package.js.
Instead we check npm versions of installed packages at runtime, on server startup, in development environment.
Dependencies as of v 2.2.0:
'@popperjs/core': '^2.11.0',
'bootstrap': '^5.2.0',Each of these dependencies should be installed at application level:
meteor npm install <package> --saveNone at the moment.
None at the moment.
In case of support or error, please report your issue request to our Issues tracker.
P. Wieser
- Last updated on 2026, May. 10th