Angular 9 Tutorial For Beginners #40 - Install Bootstrap In Angular

  Рет қаралды 9,680

ARCTutorials

ARCTutorials

Күн бұрын

Пікірлер: 86
@jonguyen4246
@jonguyen4246 4 жыл бұрын
Thanks for the course!! its the best tutorial I have seen.
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Thank you for your kind words Nguyen. Ur words are very encouraging and motivating for me. I am right here to help you if you have any doubts or queries in any of the tutorial from Angular 9 full series. Regards Sridhar
@jacksm8709
@jacksm8709 4 жыл бұрын
awesome... u r just great...
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Thank you so much 😀
@asatyababuvallabhudasu7379
@asatyababuvallabhudasu7379 3 жыл бұрын
Thanks sir for giving clear explanation and I want notes of folders and structures and boot process video notes
@maneshpunde2509
@maneshpunde2509 4 жыл бұрын
Really nice tutorial
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Thank you so much Manesh. Appreciate your kind words. Please do let me know if you have any issues or have any queries. Regards Sridhar
@vishalchaugule8633
@vishalchaugule8633 2 жыл бұрын
sir in npm method from style path and script path where do u get it
@podugumonika1972
@podugumonika1972 3 жыл бұрын
I've tried installing bootstrap, jquery and popper and imported, followed as guided but I couldn't see the Nav Bar, was there anything implemented in html?? please let me know what should I follow to get that Nav Bar after installation and importing those packages.
@ARCTutorials
@ARCTutorials 3 жыл бұрын
Hi Monika. Try installing all 3 individually. Here's the latest video tutorial with Angular 10 kzbin.info/www/bejne/opSmlnhnopWllc0
@podugumonika1972
@podugumonika1972 3 жыл бұрын
@@ARCTutorialsthank you so much
@bhupendra1807
@bhupendra1807 4 жыл бұрын
Hi Sridhar, looks like now we need to use popper.js instead of popper. I also get the when I use NPM install as one comment below. Please correct me if wrong.
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Hi Bhupendra. I used just popper and it worked charm. This was just couple of weeks back. Not sure if anything changed. I will check again and update this thread👍
@rakeshkalluri2463
@rakeshkalluri2463 4 жыл бұрын
Good explanation sir, just want to know the next one is forms concept, so are you covering how to install material design? and how to get ppts can you help with that it will be great so I can refer it has notes
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Hi Rakesh. For this tutorial i started with Bootstrap framework. I can cover material design as well. Let me know. Check out the playlist i posted more videos on Forms
@kevinstadler6206
@kevinstadler6206 4 жыл бұрын
First of all, I am really enjoying the series so far, I have learned a great deal up until now. I am looking forward to the following videos. In the Angular 9 Tutorials For Beginners video titled #40 Install Bootstrap in Angular at the end of the video, it states the next video will be Install Material Design in Angular app. The next video after this bootstrap video goes into forms. Can you please point me to the location of the Material Design in Angular video? Even the outline at the end of video #39 has Material Design in Angular after Bootstrap in Angular.
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Thanks Kevin for your kind words and encouragement. Here’s the playlist you should follow to learn and master Angular kzbin.info/aero/PLp50dWW_m40WYX5tynzpPf0a3ZgjGT1bI
@kevinstadler6206
@kevinstadler6206 4 жыл бұрын
@@ARCTutorials I am pretty sure that is the same playlist I have been following, but I still don't see that material design in angular video.
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Oh yes i didnt add Angular Material in this to avoid confusion for folks. I have covered it separately kzbin.info/aero/PLp50dWW_m40V5ZNjLJiL1cMp1Fcww2V29
@kevinstadler6206
@kevinstadler6206 4 жыл бұрын
@@ARCTutorials That's more than what I was looking for. I look forward to that playlist after I get through the rest of the current playlist. Thanks much.
@sreenuksr
@sreenuksr 4 жыл бұрын
Angular 9 Tutorial For Beginners #40 - Install Bootstrap In Angular - there are two ways to install bootstrap (CDN and NPM), preferable is NPM - there maybe changes to URL if we use CDN and lead to issues in the production environment - copy links from - getbootstrap.com, if it is CDN and include them in index.html - npm i bootstrap jquery popper --save (NOTE: It will download latest packages, you can download specific version by adding other conditions in this command) - after installing bootstrap these entries will be in package.json - we will need to import styles and scripts in order to use bootstrap - without bootstrap will NOT work - go to -> angular.json add styles and scripts under 'architecture' section as shown below "styles": [ "src/styles.scss", "node_modules/bootstrap/dist/css/bootstrap.main.css" ], "scripts": [ "node_modules/jquery/dist/jquery_min.js", "node_modules/bootstrap/dist/js/bootstrap_min.js"]
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Thanks for sharing!!! Happy Learning. Regards Sridhar
@abhabhardwaj8351
@abhabhardwaj8351 4 жыл бұрын
@sreenivasa updated the names of file as it has typo mistakes . File names are bootstrap.min.css,jquery.min.js and bootstrap.min.js instead of bootstrap.main.css, jquery_min.js and bootstrap_min.js. In vedio names are displayed correctly. "styles": [ "src/styles.scss", "node_modules/bootstrap/dist/css/bootstrap.min.css" ], "scripts": [ "node_modules/jquery/dist/jquery.min.js", "node_modules/bootstrap/dist/js/bootstrap.min.js" ]
@sreenuksr
@sreenuksr 4 жыл бұрын
@@abhabhardwaj8351 Thank you!
@sreenuksr
@sreenuksr 4 жыл бұрын
@ARC/Sridhar, what is the option we need to use if we encounter this type of error - An unhandled exception occurred: Port 4200 is already in use. Use '--port' to specify a different port.
@ARCTutorials
@ARCTutorials 4 жыл бұрын
It seems you already have an application running on port 4200!! If its not important stop the app else u can also start app by running the command ng serve -port=4400 u can use any port which is not in use. Simple
@sreenuksr
@sreenuksr 4 жыл бұрын
@@ARCTutorialsthanks for prompt response. I did not opened the application on 4200 port but sometimes I am getting that error. in that case i used to kill that port but this is not suggestable approach as per your one of comment. Just would like to know any other option without having impact. thanks!
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Just configure app on any other port instead of 4200. There is no restrictions
@nareshvesamsetti7655
@nareshvesamsetti7655 4 жыл бұрын
Hi Sreedhar, Really appreciating your hard work in extending our techies knowledge. I've tried installing bootstrap, jquery and popper and imported, followed as guided but I couldn't see the Nav Bar, was there anything implemented in html?? please let me know what should I follow to get that Nav Bar after installation and importing those packages. Regards, Naresh
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Hi Naresh. If you are free tomorrow, I can do a quick debug session with you to help you with your query. Thanks Sridhar
@nareshvesamsetti7655
@nareshvesamsetti7655 4 жыл бұрын
@@ARCTutorials Thank you so much for your kind words, please let me know when and how do you want to connect. please drop and email to nareshchinna@53gmail.com
@BhagyaNN
@BhagyaNN 4 жыл бұрын
@@ARCTutorialsI am also facing the same issue. I have installed bootstrap,jquery, popper and imported the scripts and styles. Can you tell me what is the issue?
@BhagyaNN
@BhagyaNN 4 жыл бұрын
@@ARCTutorials @ARC Tutorials I think we were not able to see the nav bar but, bootstrap features are enabled. As i am working on angular forms(session No:42) can able to see the forms. I am new to Angular please let me know if i am wrong
@nareshvesamsetti7655
@nareshvesamsetti7655 4 жыл бұрын
@@BhagyaNN yes they are enabled but not sure how to enable the nav bar I'm still waiting for sreedhar to respond if he could help I'll help you.
@pragnyakulkarni1748
@pragnyakulkarni1748 3 жыл бұрын
Sir please make a video on Angular Tables with vertical and horizontal scrolling with out using angular material module
@mayurnaktode592
@mayurnaktode592 4 жыл бұрын
Hello sir your tutorial is awesome. Requesting you to make a video on one CRUD operation where we can use most of the things under one video and i think this will help. Thank you
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Hi Mayur. Yes i have that in plan after i cover forms and HTTP. These are must to know before we start full live application. Thank you.
@vikneshramesh3529
@vikneshramesh3529 4 жыл бұрын
For installing popper It must npm install --save popper.js Is it correct?
@ARCTutorials
@ARCTutorials 4 жыл бұрын
You will need to run the npm command - "npm install --save bootstrap jquery popper"
@vikneshramesh3529
@vikneshramesh3529 4 жыл бұрын
@@ARCTutorials thank you sir
@krishnachaitanya3169
@krishnachaitanya3169 4 жыл бұрын
Sir, We also have to add popper in angular.json file know sir????
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Yes we have to add. If ur following the tutorial playlist, i have shown it there in installation tutorial. Pls check
@MrRajathirupathi
@MrRajathirupathi 4 жыл бұрын
Hello Sir, I getting the below error could you please help. PS C:\Angular_Workspace\oneconversion> npm i bootstrap jquery popper -save npm WARN deprecated chokidar@1.7.0: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies. npm WARN deprecated fsevents@1.2.13: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2. npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules ijs.resdir ode_modules\chokidar ode_modules\fsevents): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.13: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"}) npm ERR! code ENOENT
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Hi Raja. I see that you have a module chokidar used which is not compatible. So first you update that package to version 3. And then run the command to install Bootstrap.
@simrankourb1759
@simrankourb1759 4 жыл бұрын
@@ARCTutorials Hi Sridhar, I am also getting this error i tried this C:\Users\paman\Angular\Angularn>npm install chokidar npm WARN @angular-devkit/build-angular@0.1001.0-next.1 requires a peer of @angular/compiler-cli@>=10.0.0-next.0 < 11 but none is installed. You must install peer dependencies yourself. npm WARN @ngtools/webpack@10.1.0-next.1 requires a peer of @angular/compiler-cli@>=10.0.0-next.0 < 11 but none is installed. You must install peer dependencies yourself. npm WARN codelyzer@6.0.0 requires a peer of @angular/compiler@>=2.3.1 9.0.0-beta 9.1.0-beta 9.2.0-beta =2.3.1 9.0.0-beta 9.1.0-beta 9.2.0-beta
@srikanth-rk6wz
@srikanth-rk6wz 4 жыл бұрын
@@simrankourb1759 Do "npm install bootstrap jquery popper.js --save"
@abhabhardwaj8351
@abhabhardwaj8351 4 жыл бұрын
@@srikanth-rk6wz Thank you so much Srikanth. I was getting some error but now everything is installed
@ourhyderabad8499
@ourhyderabad8499 3 жыл бұрын
Installing popper failed with error as "Undefined ls-remote -h -t ssh://git..."
@ARCTutorials
@ARCTutorials 3 жыл бұрын
Popper library has undergone changes. Please check the documentation
@shashikantprasad6015
@shashikantprasad6015 4 жыл бұрын
Adding css and Js file path to angular.json but not working kindly help "styles": [ "src/styles.css", "node_modules/bootstrap/dist/css/bootstrap.min.css" ]
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Hi Shashikant. Can you please modify the path of the node_modules to "../node_modules" and try again?
@anjeetsharma8634
@anjeetsharma8634 4 жыл бұрын
@@ARCTutorials Add this line in this path src/style.css @import "~bootstrap/dist/css/bootstrap.min.css"
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Hi Anjeet. Thats one way but we should configure all configurations only in angular.json. That way managing is simple
@anjeetsharma8634
@anjeetsharma8634 4 жыл бұрын
@@ARCTutorials i mention these three think in the angular.json file, but bootstrap does not run it on the project. after adding above statement when running the bootstrap.
@ARCTutorials
@ARCTutorials 4 жыл бұрын
@@anjeetsharma8634 whats the path u gave angular.json? Did u give two dots or single dot in node_modules??
@ramyaravichandran279
@ramyaravichandran279 2 жыл бұрын
Hi i got error while installing NPM I BOOTSTRAP JQUERY POPPER -- SAVE.. I can't able to install pls help me
@shairaanarazon1686
@shairaanarazon1686 4 жыл бұрын
Hi sir, Angular 9 Tutorial For Beginners #41 - Install Material Design in Angular App is not on your playlist
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Hi Shaira, im focusing on Bootstrap in this series. I had shared earlier on how to start with Angular material do check out those tutotials. I will also share the links to you. Regards Sridhar
@nikhathtabassum6115
@nikhathtabassum6115 4 жыл бұрын
Hello sir, i got the below error while trying to execute the commang npm i bootstrap jquery popper --save.Please suggest me to resolve the errors.Thanks Errors: npm ERR! code 1 npm ERR! command failed npm ERR! command git ls-remote ssh://git@github.com/pemrouz/buble.git npm ERR! 'git' is not recognized as an internal or external command, npm ERR! operable program or batch file.
@bhaskaryarasi6972
@bhaskaryarasi6972 4 жыл бұрын
92% additional asset processing scripts-webpack-plugin✖ 「wdm」: Error: ENOENT: no such file or directory, open '/Users/sumithra/Desktop/Ang/oneconversion/node_modules/bootstrap/dist/js/bootstrap.min.js' Hai sir..help me i am getting this error
@ARCTutorials
@ARCTutorials 4 жыл бұрын
Hi Bhaskar. It means the path given in angular.json is wrong. Can u pls check whats the path given for bootstrap.min.js file?
@bhaskaryarasi6972
@bhaskaryarasi6972 4 жыл бұрын
Ok.. Thank you..sir
@bhaskaryarasi6972
@bhaskaryarasi6972 4 жыл бұрын
@@ARCTutorials working fine..sir
@avinashavi1228
@avinashavi1228 4 жыл бұрын
Sir it was not installing popper help me sir
@ARCTutorials
@ARCTutorials 4 жыл бұрын
hi Can you please copy paste message whats happening? Send me screenshot at soorya.aaradhya@gmail.com
@ashlyvarghese7053
@ashlyvarghese7053 3 жыл бұрын
dropdown not working. how to make it work?
@ashishbaranwal4044
@ashishbaranwal4044 2 жыл бұрын
on running command > npm i bootstrap jquery popper -save npm ERR! code ENOENT npm ERR! syscall spawn git npm ERR! path git npm ERR! errno -4058 npm ERR! enoent An unknown git error occurred npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoent
Angular 9 Tutorial For Beginners #41 - Forms in Angular
8:52
ARCTutorials
Рет қаралды 13 М.
Angular 19 is a BEAST of a release!
19:39
Maximilian Schwarzmüller
Рет қаралды 49 М.
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
Why aren't you using Fastify? Or Koa? Or NestJS?
9:58
Maximilian Schwarzmüller
Рет қаралды 69 М.
Gradle tutorial for complete beginners
24:48
Tom Gregory Tech
Рет қаралды 235 М.
Solving one of PostgreSQL's biggest weaknesses.
17:12
Dreams of Code
Рет қаралды 219 М.
USA strikes Russia / Zelensky's statement on negotiations
15:12
NEXTA Live
Рет қаралды 603 М.
The intro to Docker I wish I had when I started
18:27
typecraft
Рет қаралды 313 М.
How to route in Angular - Learning Angular (Part 5)
15:51
Angular
Рет қаралды 88 М.
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН