Complete Angular and Firebase Tutorial | Using Firebase as Database and Backend

Поділитися
Вставка
  • Опубліковано 6 жов 2024
  • Let's use Firebase's Realtime Database as our backend for the Angular App.
    This not only provides us with an API but also provides us with a database to do CRUD operations.
    Code: github.com/Pra...

КОМЕНТАРІ • 17

  • @asimsheikh3511
    @asimsheikh3511 2 роки тому +1

    I was expecting installing firebase using npm and all those stuff . But this is crazy. Thanks dude. It's a life saving video.

  • @ananthu5203
    @ananthu5203 2 роки тому

    Excellent tutorial. Finally I have posted my angular form data without backend to firebase. Expecting more videos on from you

  • @sukhamjotsingh3447
    @sukhamjotsingh3447 2 роки тому +1

    Exactly what I needed for a simple project.

  • @soumyasubhakantjena3269
    @soumyasubhakantjena3269 2 роки тому

    Really helpful 👍 thanks

  • @janina7570
    @janina7570 2 роки тому

    Really helpful. I just have problems accessing the Data firebase returns because of the id it puts infront of each user. Console.log is no problem but I would like to create an Object.

  • @ananthu5203
    @ananthu5203 2 роки тому

    Can you do more videos on firebase, that will be really helpful

  • @prajwalwarkhade6662
    @prajwalwarkhade6662 2 роки тому

    Osm Explanation broo :) :)

  • @PRINCE-pt5gx
    @PRINCE-pt5gx Рік тому

    @programmercouple can I Authenticate angular via firebase without angular form I want to say by using simple HTML CSS Ts Commponent only

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

    When i use delete http, i have a CORS error... can you please show us how to fix it

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

    don't we need to install firebase in our project or import firebase ???

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

    what is the argyment in OnLogin method(ngForm)?

  • @sukhamjotsingh3447
    @sukhamjotsingh3447 2 роки тому

    Actually I am getting the Cors error. I cannot resolve this. I need help

    • @mohammedfaizan97
      @mohammedfaizan97 2 роки тому

      Same here if u have solved this pls let me know too

    • @robinthefatman5887
      @robinthefatman5887 2 роки тому

      @@mohammedfaizan97 I had the same problem trying to use the Realtime Database. I solved it by not using a httpClient, but the AngularFireDatabase. You import that from @angular/fire/compat/database and inject it in the constructor, the same way as he did it with the httpClient. You then post data by e.g. this.db.object(Name of the object as string).set(jsonObject), where db is the instance of AngularFireDatabase.