<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mughees Mb</title>
    <description>The latest articles on DEV Community by Mughees Mb (@mugybro).</description>
    <link>https://dev.to/mugybro</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F489756%2F27cced42-5c46-4fa7-99f4-056fe786e6ff.jpeg</url>
      <title>DEV Community: Mughees Mb</title>
      <link>https://dev.to/mugybro</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mugybro"/>
    <language>en</language>
    <item>
      <title>Everything you need to Know about  Firebase 
</title>
      <dc:creator>Mughees Mb</dc:creator>
      <pubDate>Fri, 18 Dec 2020 18:48:56 +0000</pubDate>
      <link>https://dev.to/mugybro/integrating-firebase-with-react-part-1-51ma</link>
      <guid>https://dev.to/mugybro/integrating-firebase-with-react-part-1-51ma</guid>
      <description>&lt;h1&gt;
  
  
  What is Firebase?
&lt;/h1&gt;

&lt;p&gt;Firebase is essentially a Backend-as-a-Service (BaaS) mobile and web application development platform developed by Firebase, Inc in 2011 and then acquired by Google in 2014. It provides users with hosted backend services such as a real-time database, cloud storage, authentication, crash reporting, remote configuration, and hosting for static files.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;As you know Full-Stack applications need a front-end and back-end Service and Using a Back-End  Service like Firebase you get all the benefits of a back-end without the complications of setting one up from scratch.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h1&gt;
  
  
  Benefits of Using the Firebase (Top Ones)
&lt;/h1&gt;

&lt;p&gt;In many cases, we want a fully functioning application up and running in as little time as possible. With Firebase, you can dramatically cut development time.&lt;/p&gt;

&lt;h4&gt;
  
  
  Realtime DataBase
&lt;/h4&gt;

&lt;p&gt;Cloud Firestore database updates all connected clients in realtime. This is excellent for many types of applications. The ability to get realtime updates makes applications a lot easier to implement.&lt;/p&gt;

&lt;h4&gt;
  
  
  Authentication
&lt;/h4&gt;

&lt;p&gt;Firebase backend service offers a powerful authentication feature. It comes equipped with simple SDKs and easy to use libraries to integrate authentication feature with any mobile or web app.&lt;/p&gt;

&lt;h4&gt;
  
  
  Storage
&lt;/h4&gt;

&lt;p&gt;Firebase storage feature is powered by Google Cloud Storage and allows users to easily download media files and visual contents. This feature is also helpful in making use of user-generated content.&lt;/p&gt;

&lt;h4&gt;
  
  
  Security
&lt;/h4&gt;

&lt;p&gt;Firebase ships with built in far-reaching security. When configured correctly your app will be an impenetrable fortress. Without Firebase security is extremely hard to configure correctly.&lt;/p&gt;

&lt;h4&gt;
  
  
  Hosting
&lt;/h4&gt;

&lt;p&gt;The hosting feature of Firebase allows developers to update their contents in the Content Delivery Network (CDN) during production. Firebase offers full hosting support with a custom domain, Global CDN, and an automatically provided SSL Certificate.&lt;/p&gt;

&lt;h4&gt;
  
  
  High Speed Caching
&lt;/h4&gt;

&lt;p&gt;How fast your site loads not only helps with SEO but creates a better user experience. When you deploy using Firebase hosting your app gets cached on solid state drives (SSD) throughout the world. This makes site loading time extremely fast.&lt;/p&gt;




&lt;h1&gt;
  
  
  The Firebase API
&lt;/h1&gt;

&lt;p&gt;As a programmers, we communicate with the back-end using an application programming interface (API). Firebase is certainly no exception.&lt;br&gt;
Each method in the firebase object represents a different service. For example, by invoking the &lt;strong&gt;firebase.firestore()&lt;/strong&gt; method you can get access to Cloud Firestore. It’s a database that you can use to store and retrieve information. by invoking &lt;strong&gt;firebase.auth()&lt;/strong&gt; method you will have access to Authentication services. by invoking &lt;strong&gt;firebase.storage()&lt;/strong&gt;  user can store and manage media generated by web and mobile app users. &lt;/p&gt;




&lt;h1&gt;
  
  
  Firebase Services
&lt;/h1&gt;

&lt;p&gt;These are the core services of Firebase. With them, you will be able to leverage Firebase to build fast, highly effective web applications.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cloud Firestore 

&lt;ul&gt;
&lt;li&gt;Realtime&lt;/li&gt;
&lt;li&gt;NoSQL&lt;/li&gt;
&lt;li&gt;Security&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Hosting

&lt;ul&gt;
&lt;li&gt;SSL for Every Site&lt;/li&gt;
&lt;li&gt;Cached on SSDs&lt;/li&gt;
&lt;li&gt;Deploy From CLI&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Authentication

&lt;ul&gt;
&lt;li&gt;Email and Password Authentication&lt;/li&gt;
&lt;li&gt;OAuth Authentication&lt;/li&gt;
&lt;li&gt;User Security&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Storage

&lt;ul&gt;
&lt;li&gt;Can Handle Large File Sizes&lt;/li&gt;
&lt;li&gt;File Security&lt;/li&gt;
&lt;li&gt;Any File Type&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;




&lt;h1&gt;
  
  
  Is Firebase Free to use?
&lt;/h1&gt;

&lt;p&gt;Firebase has two pricing levels. &lt;/p&gt;

&lt;h6&gt;
  
  
  - Spark Plan (Free).
&lt;/h6&gt;

&lt;h6&gt;
  
  
  – Blaze Plan (Pay as you go).
&lt;/h6&gt;

&lt;p&gt;The first one incorporates a limited Free tier, and it’s an excellent option for development and small applications. The second tier works on a pay as you grow model, and it’s ideal for production applications.&lt;/p&gt;

&lt;h4&gt;
  
  
  In Spark Plan Firebase provides us with several products that can be used for free such as:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Authentication&lt;/li&gt;
&lt;li&gt;A/B Testing&lt;/li&gt;
&lt;li&gt;Analytics&lt;/li&gt;
&lt;li&gt;Cloud Messaging (FCM)&lt;/li&gt;
&lt;li&gt;Crashlytics&lt;/li&gt;
&lt;li&gt;Performance Monitoring&lt;/li&gt;
&lt;li&gt;Remote Config&lt;/li&gt;
&lt;li&gt;Dynamic Links&lt;/li&gt;
&lt;li&gt;Firebase Invites&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  In Blaze Plan ,it provides developers with a wide variety of paid infrastructure products such as:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Real-time Database&lt;/li&gt;
&lt;li&gt;Phone Auth&lt;/li&gt;
&lt;li&gt;Firebase Storage&lt;/li&gt;
&lt;li&gt;Hosting&lt;/li&gt;
&lt;li&gt;Test Lab&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Conclusion
&lt;/h1&gt;

&lt;p&gt;There are so many services available that it can feel overwhelming, but trust me when I tell you that each service is easy to work with. Firebase documentation is pretty good as far as the documentation is concerned. I also use Firebase in all of my apps which is why I wanted to get the word out about how awesome it is.&lt;/p&gt;

</description>
      <category>firebase</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
