I would like to migrate my theme from Bootstrap 4 to Bootstrap 5.
I found out that I had difficulties to get the difference between composer and npm.
On the documentation, I can install Bootstrap 5 in two ways:
composer require twbs/bootstrap:5.0.1
Or using npm
npm install bootstrap
or using CDN
So far I know that Composer is for PHP package, NPM for JS package but in this case how to choose ? what is the most convenient way and especially a way that makes sens ?
If you could give me an insight, it would be great.