What is the difference between “ng-bootstrap” and “ngx-bootstrap”?

What is the difference between ng-bootstrap and ngx-bootstrap? Are they related to each other? Or are they simply concurrent implementations? Has someone worked with them both and can give/explain pros and cons of both? With ng-bootstrap I mean ng-bootstrap.github and with ngx-bootstrap I mean valor-software-ngx-bootstrap. Both related to Angular 4 (not to AngularJS!) and Bootstrap … Read more

How to add bootstrap to an angular-cli project

We want to use bootstrap 4 (4.0.0-alpha.2) in our app generated with angular-cli 1.0.0-beta.5 (w/ node v6.1.0). After getting bootstrap and its dependencies with npm, our first approach consisted in adding them in angular-cli-build.js: ‘bootstrap/dist/**/*.min.+(js|css)’, ‘jquery/dist/jquery.min.+(js|map)’, ‘tether/dist/**/*.min.+(js|css)’, and import them in our index.html <script src=”https://stackoverflow.com/questions/37649164/vendor/jquery/dist/jquery.min.js”></script> <script src=”vendor/tether/dist/js/tether.min.js”></script> <link rel=”stylesheet” type=”text/css” href=”vendor/bootstrap/dist/css/bootstrap.min.css”> <script src=”vendor/bootstrap/dist/js/bootstrap.min.js”></script> This worked … Read more