Create News App Using React JS And Bootstrap | Learn Bootstrap In React JS Tutorial

Поділитися
Вставка
  • Опубліковано 1 січ 2025

КОМЕНТАРІ • 150

  • @kallapallisai9959
    @kallapallisai9959 Рік тому +18

    This is the small request make videos tutorials on figma design your teaching skills are awesome.

  • @ishaqabdullahi7555
    @ishaqabdullahi7555 11 місяців тому +4

    Short and to the point but very informative. Great video!

  • @mujibulhaquetanim
    @mujibulhaquetanim 11 місяців тому +7

    Wonderful, this is how a tutorial should be-direct, to the point, and without spending time on Bs.

  • @saltytunafacts1906
    @saltytunafacts1906 Місяць тому +1

    I just found this video and this channel is GOLD

    • @GreatStackDev
      @GreatStackDev  Місяць тому

      I'm so glad! Thank you so much. 😊 Keep coding.

  • @cricket_streaming1
    @cricket_streaming1 8 місяців тому +3

    after long time, i found this tutorial. Very helpful. Please make more of these❤❤

  • @mahmoodakram5540
    @mahmoodakram5540 Рік тому +4

    Thanks. For sharing knowledge.. 🎉

  • @michaeledehh
    @michaeledehh Рік тому +5

    Something for the weekend ❤

  • @shihansanaka3879
    @shihansanaka3879 Рік тому +2

    Cooool bro...❤

  • @noviantoekobudiman7633
    @noviantoekobudiman7633 3 місяці тому

    Thank you so much for the tutorial!

  • @emmanueleche3455
    @emmanueleche3455 2 місяці тому

    This tutorial really helped me thanks alot👍

  • @easycodingwithbg4731
    @easycodingwithbg4731 2 місяці тому

    Very Informative Sir 💓

  • @SelsebilBenelhaj
    @SelsebilBenelhaj 4 місяці тому +1

    Just awesome 🤩🤩

  • @websitedesigndevdeploy
    @websitedesigndevdeploy Рік тому +1

    Cool. Thanks for the tutorial.

  • @hemanthkt2887
    @hemanthkt2887 2 місяці тому

    completed within 1 hour..tysm

    • @Moni29_8
      @Moni29_8 7 днів тому

      R u run this project successfully??

  • @motivation2change754
    @motivation2change754 Рік тому +9

    what about react admin dashboard for e-commerce react app
    as you have mentioned there

  • @DipakShende-oe9pn
    @DipakShende-oe9pn Рік тому +1

    its an very amezing video.

  • @Overall_Curve
    @Overall_Curve 3 місяці тому +2

    Those who are using the slice method on title and description.
    If you are getting an error, try ternary operator on both title and description. The reason why we are getting error is because when we fetch the value of title or description from NEWSAPI, sometimes the value is null stored on the NewsAPI, which crashes the whole program.
    Try this.
    {title ?title.slice(0, 40) : "Breaking news"}
    {description ? description.slice(0, 90) : "Updates: What is going on today, Check out here."}

  • @technicalresi5451
    @technicalresi5451 11 місяців тому

    This video is me help one of the most good video for UA-cam 😊❤

  • @mahakalgamer7520
    @mahakalgamer7520 Рік тому +1

    Thank you so much 🙏

  • @oqant0424
    @oqant0424 2 місяці тому

    Thank u so much
    very helpful

  • @aroundtheworld5040
    @aroundtheworld5040 4 місяці тому

    keep it up⬆🎖

  • @YasriMucyo
    @YasriMucyo Рік тому +2

    Great!

  • @amirtorghon2464
    @amirtorghon2464 2 місяці тому

    Amazing tutorial

  • @Amanकुमार-y4m
    @Amanकुमार-y4m Рік тому +1

    awesome❤

  • @balajipamu
    @balajipamu 11 місяців тому +5

    Broo I need a source code it will very helpful, while executing ur same code getting some issues!!

  • @shihansanaka3879
    @shihansanaka3879 Рік тому +3

    I think it is better to use vite for the other projects too...❤

  • @codingwithebooks
    @codingwithebooks Рік тому

    Great videos👏👏

  • @rutvapatel3251
    @rutvapatel3251 7 місяців тому

    Thank you so much!

  • @IllIIIIIIllll
    @IllIIIIIIllll Рік тому

    Thank you sir 🙏.

  • @nandakumar5701
    @nandakumar5701 Рік тому

    Thanks a lot brother❤

  • @Elgnonvis
    @Elgnonvis Рік тому +1

    thanks
    react admin dashboard with Bootstrap will be great tuto

  • @ZeeshanElia
    @ZeeshanElia Рік тому

    React vite with simple bootstrap of your video is super

  • @poojanoothi3748
    @poojanoothi3748 9 місяців тому

    thank you so much

  • @AnandaMuhuri
    @AnandaMuhuri 3 місяці тому +1

    Thanks sir

    • @GreatStackDev
      @GreatStackDev  3 місяці тому +1

      You're Welcome! 😊 Keep coding.

    • @AnandaMuhuri
      @AnandaMuhuri 3 місяці тому

      @@GreatStackDev sir the api you used can be only used in local host, but if I deploy it then from browser it's not accessible. Do you have any other APIs which can be accessed from browser also ?

  • @evansmbewe06
    @evansmbewe06 Рік тому +3

    My url API key doesnt have urlToImage so i cannot add urlToImage care to help?

  • @69mystery67
    @69mystery67 11 місяців тому +8

    I am facing an error when implementing slice() function into title and description. The screen just went blank. The error message in console was "Uncaught TypeError: Cannot read properties of undefined (reading 'slice')"

    • @relangimammayyacodingcente9416
      @relangimammayyacodingcente9416 11 місяців тому

      Bro what did you do for that slice problem

    • @69mystery67
      @69mystery67 11 місяців тому

      @@relangimammayyacodingcente9416 add != null after description. My code for line 8 at 24:20 is : {description != null ? description.slice(0, 90) : "No description"}

    • @vibhourrr
      @vibhourrr 10 місяців тому +1

      The problem is not with the slice method but with the data you're firing the method to. if you're using it for example Data.slice() try consoling the data, it may be undefined that's why the slice method might not be working

    • @alfaloverss3116
      @alfaloverss3116 9 місяців тому

      ​@@relangimammayyacodingcente9416 jaha par props pass kiye udhar slice krke dekhna work keega

    • @abdelrahmanmohamed4372
      @abdelrahmanmohamed4372 3 місяці тому +1

      title?tilte.slice(0,50):""

  • @aogunnaike
    @aogunnaike Рік тому

    I got the notification and it disappeared on my notifications list 😢 had to search for wit, nice tutorial

    • @AnmolCodesofficial
      @AnmolCodesofficial Рік тому +2

      The video came 25 minutes ago and the video is 34 minutes longer how you saw the video huhh

  • @ujjawalpugalia2123
    @ujjawalpugalia2123 9 місяців тому +2

    The only thing is that i am unable to deploy the project, it is working fine on localhost but screen becomes blank when deployed on vercel or netlify

    • @Moni29_8
      @Moni29_8 7 днів тому

      Same problem..... help me to solve this blank yaar

  • @khurshedaalam7478
    @khurshedaalam7478 Рік тому

    Awesome

  • @jojid.econar280
    @jojid.econar280 Рік тому +2

    hey bro, can you make tutorial on how to create a website builder like WordPress?

    • @icelygorapo2401
      @icelygorapo2401 Рік тому +1

      He has that on his 30 days JavaScript project playlist

    • @Rohittarkar175
      @Rohittarkar175 4 місяці тому

      @@jojid.econar280 hey! I made a lot of WordPress websites and that was my complete waste of time. As you don't have any privacy coz plugins in WordPress can breach your data

  • @azsreenu2540
    @azsreenu2540 9 місяців тому

    Very nice

  • @ubaidullah4221
    @ubaidullah4221 Рік тому

    Thanks

  • @AmanKumar-sr5wj
    @AmanKumar-sr5wj Місяць тому

    7:50 why he remove import react statement .

  • @sanketpathak6621
    @sanketpathak6621 6 місяців тому

    Hey nice video. What does the slice() method actually do here?

  • @dreamkillrop2037
    @dreamkillrop2037 4 місяці тому +1

    api not giving Image and description.

  • @dipesharwat
    @dipesharwat Рік тому

    Sir, this is small request make video on UA-cam clone using React

  • @PoojaJain840
    @PoojaJain840 5 місяців тому +1

    can u pls help me as i am getting error while using map function

  • @vnkt_ayyappa
    @vnkt_ayyappa Рік тому +1

    Hello sir
    I had a doubt y your react project outpage is different

  • @NoTimeWaste1
    @NoTimeWaste1 5 місяців тому

    Done!! ✅

  • @Cream-Clips
    @Cream-Clips Рік тому

    I have some problem when I fetch api

  • @blackmythtaufel
    @blackmythtaufel 6 місяців тому

    hello bro need some help here😅😅😅😅 when i copied button from bootsrap and pasted it its working fine if i changed the class to classname then its not showing the styles just buttons showing no colors at all then again changed classname to class its working fine with showing colors to buttons and style what shoild i do if there is no classname then it isnt react ryt??

  • @Manas361
    @Manas361 5 місяців тому +1

    i can't access category in my api link by using this category=${category}.. screen got blank , any solution??

    • @User-lm4qq
      @User-lm4qq 5 місяців тому

      Paste the code in gpt and type correct it and it works .

  • @nutansingh3612
    @nutansingh3612 5 місяців тому +5

    hello sir,
    mera newsapp nhi chal rha h
    vo localhost:5173 pr 2-3 sec ke liye dikhta h bs
    or automatic blank hojata h
    plzzz help me sir👏👏👏👏👏👏

    • @Nenavath-m1b
      @Nenavath-m1b 3 місяці тому +1

      same with me also

    • @Assassin52
      @Assassin52 Місяць тому

      Bro check your api and env file...
      I also faced that problem but when I rechecked it I found i created .env file in my src folder but we have to create it outside the src folder

    • @jigsawgaming8677
      @jigsawgaming8677 Місяць тому

      @@Assassin52 make env file is not important you can direct hit api in your code by using axios or .then .catch also use try and catch

    • @Assassin52
      @Assassin52 Місяць тому

      @@jigsawgaming8677 yup...👍

    • @Moni29_8
      @Moni29_8 7 днів тому

      Same problem

  • @vigneshm5595
    @vigneshm5595 Рік тому +1

    Brw i have one error in category change it doesn't change category 😢please help me

  • @aishwaryajoshi8020
    @aishwaryajoshi8020 6 місяців тому

    If same process is done in without using vite then how to connect the news api

  • @sheralishaik8852
    @sheralishaik8852 5 місяців тому +1

    NEWSAPI gives CORS error in free developer pack get result only in localhost failed while deployment
    how to slove this
    any other NEWSAPI for free deployment

    • @BabaBanarasi_003
      @BabaBanarasi_003 5 місяців тому +1

      broo am also facing the error while loading the page it shows me a blank page

  • @bhumikabansal6022
    @bhumikabansal6022 7 місяців тому

    Compiled with problems:
    ×
    ERROR in ./node_modules/body-parser/lib/read.js 19:11-26
    Module not found: Error: Can't resolve 'zlib' in 'C:\Users\bhumi\OneDrive\Desktop\NewsApp
    ews
    ode_modules\body-parser\lib'
    BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.
    This is no longer the case. Verify if you need this module and configure a polyfill for it.
    If you want to include a polyfill, you need to:
    - add a fallback 'resolve.fallback: { "zlib": require.resolve("browserify-zlib") }'
    - install 'browserify-zlib'
    If you don't want to include a polyfill, you can use an empty module like this:
    resolve.fallback: { "zlib": false }
    ERROR in ./node_modules/body-parser/lib/types/urlencoded.js 201:12-34
    Module not found: Error: Can't resolve 'querystring' in 'C:\Users\bhumi\OneDrive\Desktop\NewsApp
    ews
    ode_modules\body-parser\lib\types'
    BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.
    This is no longer the case. Verify if you need this module and configure a polyfill for it.
    If you want to include a polyfill, you need to:
    - add a fallback 'resolve.fallback: { "querystring": require.resolve("querystring-es3") }'
    - install 'querystring-es3'
    If you don't want to include a polyfill, you can use an empty module like this:
    resolve.fallback: { "querystring": false }
    ERROR in ./node_modules/content-disposition/index.js 21:15-39
    i am getting this error

  • @dhruvinchawda439
    @dhruvinchawda439 5 місяців тому

    will news gets updated time to time?

  • @fearx377
    @fearx377 8 місяців тому +1

    Followed it step by step, i run npm run dev and i just get a blank screen.. please help

  • @poojanoothi3748
    @poojanoothi3748 5 місяців тому

    slice is not working for description

  • @SumanthS-dz3fk
    @SumanthS-dz3fk Рік тому +1

    Bro link giving msg setcategory is not a function how to solve it

  • @ankitasenapati8836
    @ankitasenapati8836 6 місяців тому +2

    Why the page is not loading ?

    • @BabaBanarasi_003
      @BabaBanarasi_003 5 місяців тому

      Am also facing the same issue whenever i run the npm command the page is loading but it disappear after few second.

    • @BabaBanarasi_003
      @BabaBanarasi_003 5 місяців тому

      can you tell me how you fix it ??

  • @user-zl3nx9db8v
    @user-zl3nx9db8v Рік тому

    if im uploading the code in github and hosting it then its not working can u solve it

  • @tomwalton8014
    @tomwalton8014 Рік тому

    hi,
    I am having a problem when pasting the navbar code into the navbar.jsx file, a syntax error arrises with the open and close curly brace and normal bracket which causes the navbar not to work. Please help thanks

    • @tomwalton8014
      @tomwalton8014 Рік тому

      I am getting this error code
      [plugin:vite:react-babel] C:\Users\User\landlord_v5\src\Components\Navbar.jsx: Expected corresponding JSX closing tag for . (26:49)
      29 |
      C:/Users/User/landlord_v5/src/Components/Navbar.jsx:26:49
      25 | Another action
      26 |
      27 | Something else here
      | ^
      28 |
      29 |

    • @bemzloarddesigner6459
      @bemzloarddesigner6459 Рік тому

      setCategory("...")}>


      setCategory("...")}>


      setCategory("..")}>


      setCategory("..")}>


      setCategory("..")}>

  • @MukeshKannan-fr4el
    @MukeshKannan-fr4el 10 днів тому

    Bro I'm facing 1 issue..
    I have only 3 column not 4 why

  • @vanshikasharma2128
    @vanshikasharma2128 9 місяців тому +1

    I'm facing an error while fetching api. Can anyone help me to resolve

  • @CoderBoy-u1z
    @CoderBoy-u1z 2 місяці тому

    How to host this website

  • @VISHALMishra-r7j
    @VISHALMishra-r7j Рік тому +1

    facing some error anyone help mee

  • @Rant-gb1zz
    @Rant-gb1zz 7 місяців тому

    Where is the assets folder?

  • @nellyfancii-rs2tp
    @nellyfancii-rs2tp 4 місяці тому +1

    is it just me or is there anybody whose images are not showing i mean te one from the api

    • @mansisahu2978
      @mansisahu2978 4 місяці тому

      Ya same....did it worked? Can u pls guide me

    • @hemanthkt2887
      @hemanthkt2887 2 місяці тому

      use back ticks ` ` not " "

  • @rohansingla4270
    @rohansingla4270 Рік тому

    bro 1 doubt why you created a special file to store api key . you could have stored it in a variable in same file

    • @charlieyt1163
      @charlieyt1163 11 місяців тому

      for privacy so that no one can steal the api key

    • @rohansingla4270
      @rohansingla4270 11 місяців тому

      @@charlieyt1163oh got it that's why he created a .env file as he will not push it into github. thanks for your reply tho

  • @user-nl1bj9oo9f
    @user-nl1bj9oo9f Рік тому

    bro can you make login form in navaigation bar?

  • @CodeMonk_001
    @CodeMonk_001 6 місяців тому +2

    I followed step by step but is not working

  • @alfaloverss3116
    @alfaloverss3116 9 місяців тому

    Slice method is not working

  • @khushichaurasia121
    @khushichaurasia121 2 місяці тому

    Can I get the code ??

  • @SumitKumawat-l1e
    @SumitKumawat-l1e 5 місяців тому

    VITE-API-KEY IS UNDEFINED............. WHAT IS SOLUTION....?

  • @tapaskumardey650
    @tapaskumardey650 Рік тому +2

    Can anyone tell me why the images of each news items are not loading. I mean the alt tag is getting executed not the src part.
    Please help

    • @avneetkaur2175
      @avneetkaur2175 Рік тому

      try changing the country back to us in api url. The issue is caused due to incomplete information by api for certain fields when we change the country

    • @ayushsinghal5521
      @ayushsinghal5521 Рік тому

      @@avneetkaur2175 I am getting problem in setting .env file it shows error undefined map

    • @NamrataPatel-f2r
      @NamrataPatel-f2r Рік тому

      @@ayushsinghal5521 did u get the solution?

  • @homawasimkhan3845
    @homawasimkhan3845 3 місяці тому

    my api is not working😌😌😔

  • @_MYNAMEISEARL
    @_MYNAMEISEARL 11 місяців тому

    What happened to Avinash?

  • @alfaloverss3116
    @alfaloverss3116 9 місяців тому +2

    Category is not working

    • @weirdomemes
      @weirdomemes 8 місяців тому +1

      Same prob

    • @danishnadaf9890
      @danishnadaf9890 8 місяців тому +1

      @@weirdomemeserror Solved ???

    • @danishnadaf9890
      @danishnadaf9890 8 місяців тому +1

      On Click İs Not Working If I Am Click The Any Category It İs Not Working

    • @weirdomemes
      @weirdomemes 8 місяців тому

      @@danishnadaf9890 yes it's solved

    • @weirdomemes
      @weirdomemes 8 місяців тому

      @@danishnadaf9890 well i changed the api , I use Google news api instead of his suggestion

  • @rahultodani
    @rahultodani 10 місяців тому

    Don't we call it website instead of app

  • @lizagarg8954
    @lizagarg8954 6 місяців тому

    can anyone provide source code?

  • @sumitrasmtr7441
    @sumitrasmtr7441 4 місяці тому

    plz share source code

  • @Crepybro
    @Crepybro 7 місяців тому

    Not working

  • @arialearn
    @arialearn 5 місяців тому

    I cant count how many times you said "we will", very tiring.

  • @prasannareddy-h6i
    @prasannareddy-h6i 6 місяців тому

    source code bhayya:(

  • @Letscodeabhi
    @Letscodeabhi 3 місяці тому

    jisko code chayie bata do]

    • @babyyato
      @babyyato 3 місяці тому

      api not working can you please share the code

    • @babyyato
      @babyyato 3 місяці тому

      emergency tomorrow is my interview help

  • @WhispersofLove-r5k
    @WhispersofLove-r5k Місяць тому +1

    Thanks. For sharing knowledge.. 🎉