this project completely ionic base version
nodejs install on your system
ionic cli :
npm install -g @ionic/cli native-run cordova-res
if want to start new ionic project
ionic start
angular cli :
npm install -g @angular/cli
if want to start new angular project
ng new my-dream-app
cd my-dream-app
ng serve
run your appliction
if it's Ionic Project
ionic s
or ionic serve
if it's Angular Project
ng s
or ng serve
Frist Install Jquery for Bootstrap Dependency
npm i jquery
then install Bootstrap
npm install bootstrap
Integration in your application
angular.json file
"styles": [ "node_modules/bootstrap/dist/css/bootstrap.min.css" ], "scripts": [ "node_modules/jquery/dist/jquery.min.js", "node_modules/bootstrap/dist/js/bootstrap.min.js" ]
npm install underscore
npm install bootstrap @types/underscore
//import in your component.ts file import * as _ from 'underscore'; //use underscore methodes console.log('now: ', _.now());