An open API service indexing awesome lists of open source software.

https://github.com/zaszab/cloud-firestore-javascript

Getting Started app With Cloud Firestore on the Web with Javascript. Based on Google Firecast video
https://github.com/zaszab/cloud-firestore-javascript

firebase firestore-database javascript

Last synced: 2 months ago
JSON representation

Getting Started app With Cloud Firestore on the Web with Javascript. Based on Google Firecast video

Awesome Lists containing this project

README

          

# Getting Started with Cloud Firestore with Javascript

Example Javascript application based on Firecast video:
https://www.youtube.com/watch?v=2Vf1D-rUMwE

## Getting Started

Modify the following rows in your index.js to your settings, which you can find at the Firebase console.

```
// Modify this to your configuration found at Firebase console
// https://console.firebase.google.com/u/0/project/[projectname]/overview
var config = {
apiKey: "[apikey]",
authDomain: "[projectname].firebaseapp.com",
databaseURL: "https://[projectname].firebaseio.com",
projectId: "[projectname]",
storageBucket: "[projectname].appspot.com",
messagingSenderId: "[senderid]"
};
```

Then open index.html in your browser.