bootstrap 4 npm install angular 8 code example

Example 1: install angular bootstrap

# From project directory:
npm install --save bootstrap
npm install --save jquery

# Now edit `angular.json`
# Position: `projects -> architect -> build -> options`
# To `styles`, add "node_modules/bootstrap/dist/css/bootstrap.css"
# To `scripts`,
#   add "node_modules/jquery/dist/jquery.js"
#   and also "node_modules/bootstrap/dist/js/bootstrap.js"
# Test with
# <<div class="alert alert-primary" role="alert"> Bootstrap alert</div>

Example 2: installing bootstrap in angular 9

ng add @ng-bootstrap/ng-bootstrap

Example 3: install bootstrap in angular 9

npm install bootstrap --save

Example 4: how to install bootstrap in angular

"styles": [
  "node_modules/bootstrap/dist/css/bootstrap.min.css",
  "styles.scss"
]

Example 5: install bootstrap angular

install bootstrap angular