angular
  • Install node,npm,angular CLI/angular5 in ubuntu
  • create Angular CLI/angular5 project
  • Routing in Angular CLI/angular5
  • To add bootstrap in Angular CLI
  • to add data-tables Angular CLI/angular5
  • To add jQuery in Angular CLI/angular5
  • Upgrade
    • Upgrading-to-Angular-6
    • Update node version latest in ubuntu
Powered by GitBook
On this page

Was this helpful?

To add bootstrap in Angular CLI

npm install ngx-bootstrap --save

add index.html

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">

for import component where you used:

import {NgbModule} from '@ng-bootstrap/ng-bootstrap';import { ButtonsModule } from 'ngx-bootstrap';

and import [ ButtonsModule.forRoot(),]

then, you can use the bootstrap component in your project..

PreviousRouting in Angular CLI/angular5Nextto add data-tables Angular CLI/angular5

Last updated 6 years ago

Was this helpful?