Getting started with Cloud Firestore for the web

Getting started with Cloud Firestore for the web

Firebase

2 года назад

128,126 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

relativityboy
relativityboy - 11.09.2023 01:28

This video is excellent. The most valuable & succinct web firebase tutorial I've found. How does it have less than 100 comments?!?!?!

Ответить
Yonathan Ashebir
Yonathan Ashebir - 20.08.2023 15:55

Just what people need

Ответить
driveclassDataBase
driveclassDataBase - 18.08.2023 21:33

as you mentioned in another video: It is better to validate serverside.
That is why i also wanted to create a rule in the cloud firestore. I can not get it to work though:

allow create: if !exists(/databases/$(database)/documents/schools/T4GpuQlOBycURI4BzvG2/$(request.resource.data.school.name))

This one is supposed to only create an entry if there is no other school with the same name. i spent a long time to research why this would not work. But i can not figure it out.
Thank you in advance.

And Thank you for the well made videos.

Ответить
Zerg Zerg
Zerg Zerg - 13.08.2023 21:22

Why addDoc method dublicate data int firabase database?

Ответить
Nina Cox
Nina Cox - 08.05.2023 01:42

David must have made a legendary video, they mention him in every firebase tutorial lol

Ответить
daniel wakeley
daniel wakeley - 13.04.2023 19:05

It would have been nice to include the source code. But the video is already out of date

Ответить
Alfredo Rodríguez
Alfredo Rodríguez - 27.02.2023 23:56

Very nice video, Thank you!

Ответить
Mehmet Kaya
Mehmet Kaya - 14.02.2023 19:39

thank you robin

Ответить
TedS
TedS - 20.11.2022 22:11

I'm trying some of this code but am getting this webpack error:
Uncaught Error: Module parse failed: The top-level-await experiment is not enabled (set experiments.topLevelAwait: true to enabled it)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file.

my webpackconfig.js file: (not a fan of webpack!!!)

const path = require('path')

module.exports = {
mode: 'development',
devtool: 'eval-source-map', // as in this video
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
},
plugins: ['@babel/plugin-syntax-top-level-await'], // tried this fix
experiments: { // and this from webpack docs...
topLevelAwait: true,
},
watch: true,
}

Any help would be appreciated!

Ответить
E9
E9 - 22.10.2022 11:52

Please, how can one enjoy all these firebase v9 functional programming features in Flutter apps. It seems the old OOP approach (method chaining) is still the only way in flutter. Is Firebase version 9 still only for web?

Ответить
Isomorphic
Isomorphic - 24.07.2022 21:01

Can you also listen to a CollectionReference in realtime or do I have to create a listener for each document in this collection?

Ответить
Sam Mead
Sam Mead - 24.06.2022 11:21

Thanks for these tutorials, they're always extremely useful. Did the video about the difference between documents and collections make it into the wild? (Mentioned @0.36)

Ответить
Octavio BIDOGLIO HUARO
Octavio BIDOGLIO HUARO - 29.05.2022 03:18

nice

Ответить
Abhilash P
Abhilash P - 08.04.2022 18:49

Hi Can you Please share video regarding how to fetch the firebase firestore subcollection and docs.

Ответить
Eduardo Salles
Eduardo Salles - 21.03.2022 23:43

it was exactly what I has searching

Ответить
PizzaGuy
PizzaGuy - 18.03.2022 20:40

great info! thanks keep it up

Ответить
Jim Shtepa
Jim Shtepa - 10.03.2022 11:31

how come nobody is facing `top level await` problem?

Ответить
Emeka Orji
Emeka Orji - 01.03.2022 14:28

Thanks really, but many important part that will aid understanding are being skipped

Ответить
Dos Branding
Dos Branding - 19.02.2022 06:35

Is it possible to get the github link?

Ответить
Alex Kavanagh
Alex Kavanagh - 15.02.2022 10:07

This was awesome.

Ответить
Noureddin Hariri
Noureddin Hariri - 18.12.2021 13:31

amazing ! , please more of this for Allah sake

Ответить
kltech
kltech - 10.12.2021 00:45

This is how net ninja codes in firebase as well. Nice.

Ответить
Rashid Aliyev
Rashid Aliyev - 15.11.2021 01:35

I am very novice in this. I have been looking for a way to a get (by "get" I mean at least console.log) particular item in a document (or I guess sub-document). How do I do that? Most tutorials focus on adding, deleting and changing entire documents.

Ответить
Julio Spinelli
Julio Spinelli - 11.11.2021 19:41

I am so confused, he is using the firebase functions without ever logging a single user, Then shows us the rules allowing anything and everything. Plus showing us how the config is placed in the client, thus available to anybody and everybody. If we restrict users from logging in then nothing works. How do you go from anybody with the config information being able to create an user, to then being safe by restricting users that anybody can create? Makes no sense. I must be missing something here, help!

Ответить
Dmitriy Rotaenko
Dmitriy Rotaenko - 07.11.2021 20:28

Amazing! Looking forward to more!!!!

Ответить
michele carmagnani
michele carmagnani - 05.11.2021 10:36

Thanks for tutorial really useful! I wonder how to create a SUB-COLLECTION ?

Ответить
John James Flashman
John James Flashman - 31.10.2021 12:10

Where do I find David's video?

Ответить
J Sha
J Sha - 31.10.2021 00:14

We need more!!!
thank you for the fundamentals, it's really needed

Ответить
A
A - 21.10.2021 19:43

All my initial excitement for Firestore dropped to rock bottom when I discovered that you can't easily and cheaply know the amount of the documents in a collection or in a query.

Ответить
bloc ky
bloc ky - 18.10.2021 20:35

What does it mean to be a "developer Advocate"?

Ответить
David Somekh
David Somekh - 18.10.2021 14:24

Is there a solution yet to the problem that FireStore does not remove the data after the user logs out? Also, there is no way manually remove the data. Which basiclly means that after a sync the data will stay on the device forever!

Ответить
testuser
testuser - 14.10.2021 17:03

How do you get typescript working with the new modular firestore v9? When I get a single doc or query for multiple docs, I need the result to be typed. Please help :(

Ответить
tomas carignano
tomas carignano - 07.10.2021 17:24

Best series ever!

Ответить
Arga Roh Sahrijal Saragih
Arga Roh Sahrijal Saragih - 04.10.2021 12:15

I hope the next in the series will be FCM. I"m really stuck on implementing that in a React app. My app can't seem to receive any push notification message.

anw, thanks for the nice vid

Ответить
Randy4i i
Randy4i i - 29.09.2021 16:49

Thank you Tod but where are the cool animations?

Ответить
Wizzl
Wizzl - 29.09.2021 12:04

I see Todd is explaining Firebase, I press like

Ответить
Nemesis Comics
Nemesis Comics - 29.09.2021 02:36

Man you are life saver. I spent 2 days figuring out the snapshot method because I'm using the new version of firebase

Ответить
Shaurya Aher
Shaurya Aher - 28.09.2021 17:17

That was a great video. Please make more "Fundamentals" videos.

Ответить
Victor Diaz
Victor Diaz - 28.09.2021 08:57

We need more of this more often. Thank you!

Ответить
Adriana León
Adriana León - 28.09.2021 08:54

Unrelated question for Todd, I remember on the last Firestone series he showed a MacBook with a sticker of a fox that covered it, I think it looked amazing, where did you got that sticker/skin? I want one!

Ответить
vijay shinde
vijay shinde - 27.09.2021 21:35

nice

Ответить
Dave Collison
Dave Collison - 27.09.2021 21:07

I'm already subscribed and very much looking forward to more of these updated videos arriving!

Ответить
Sulaine Bona Gamer
Sulaine Bona Gamer - 27.09.2021 20:30

Obrigado 😊

Ответить
Pavanakumara Dr
Pavanakumara Dr - 27.09.2021 20:15

Best cloud platform in the planet

Ответить
theisoj
theisoj - 27.09.2021 20:13

Thanks 👍

Ответить
Lars Rye Jeppesen
Lars Rye Jeppesen - 27.09.2021 20:00

Very informative, Coach

Ответить