bootstrap-esm
v1.0.0
Published
ES Module version of Bootstrap v5 with tree shaking support for optimized code
Downloads
121
Maintainers
Readme
bootstrap-esm
ES Module version of Bootstrap v5 with tree shaking support for optimized code.
Notes: This package is intended for use by bundlers.
Bootstrap version used: v5.3.3
Why ?
- Because
import { Button } from 'bootstrap'
does not perform tree shaking. See https://github.com/twbs/bootstrap/issues/37575 - Because I don't want to install
@types/bootstrap
.bootstrap-esm
includes types.
Usage / Example
npm install bootstrap-esm
import { Tooltip } from 'bootstrap-esm'
document.querySelectorAll('[data-bs-toggle="tooltip"]').forEach((element) => {
new Tooltip(element)
})