When I was going through on configuring bootstrap in angularjs 2, I came across the below step in this link,
How to add bootstrap to an angular-cli project
npm i bootstrap@next
I understand if we run the below command,
npm i -S bootstrap@4.0.0-alpha.4
Then this will install bootstrap alpha version. But if we give @next, which version will be installed ?
Also what --save with @next like,
npm i bootstrap@next --save
which is recommended ? and also how can we confirm the version of the installed version ?