All Projects → PeterHdd → firebase-firestore-snippets

PeterHdd / firebase-firestore-snippets

Licence: MIT license
Contains the snippet for both Firebase and Firestore in VS Code editor

Projects that are alternatives of or similar to firebase-firestore-snippets

vscode-language-rtf
RTF Language Extension for Visual Studio Code
Stars: ✭ 17 (+30.77%)
Mutual labels:  visual-studio-code
snipped
🖥️ 🖼️ Create fancy screenshots of your code without leaving the editor.
Stars: ✭ 98 (+653.85%)
Mutual labels:  visual-studio-code
nix-env-selector
Allows switch environment for Visual Studio Code using Nix Package Manager.
Stars: ✭ 154 (+1084.62%)
Mutual labels:  visual-studio-code
wordsreminder
React native application to save words in dictionaries.
Stars: ✭ 33 (+153.85%)
Mutual labels:  firestore
mlxprs
MarkLogic Extension for Visual Studio Code
Stars: ✭ 17 (+30.77%)
Mutual labels:  visual-studio-code
vscode-yaml-sort
This VS Code extension exposes the possibility to sort, format and validate yaml files.
Stars: ✭ 25 (+92.31%)
Mutual labels:  visual-studio-code
react-firebase-context
A basic set of components that help dealing with Firebase services
Stars: ✭ 41 (+215.38%)
Mutual labels:  firestore
Goals
An app which shows how to integrate Firestore with the famous BLoC pattern in Flutter
Stars: ✭ 67 (+415.38%)
Mutual labels:  firestore
SampleFoodBlog
🔥 Android blog application, built with Firebase
Stars: ✭ 23 (+76.92%)
Mutual labels:  firestore
Better-Less
Cross-compatible syntax highlighting for Less
Stars: ✭ 13 (+0%)
Mutual labels:  visual-studio-code
pring-admin.ts
Cloud Firestore model framework for TypeScript - Google
Stars: ✭ 13 (+0%)
Mutual labels:  firestore
VSC-React-Native-React-Redux-Snippets
Snippets for React and React-Native with a bit of Redux for es6/es7 user.
Stars: ✭ 56 (+330.77%)
Mutual labels:  visual-studio-code
JetStory
JetStory is an open source android app made to help you spend your waiting time reading stories that have similar length to your available time.
Stars: ✭ 20 (+53.85%)
Mutual labels:  visual-studio-code
Monokai-Flat
A material monokai color scheme for Visual Studio, Visual Studio Code, JetBrains IDE and some terminal
Stars: ✭ 21 (+61.54%)
Mutual labels:  visual-studio-code
sink
Verify that you're spending more than you can afford
Stars: ✭ 78 (+500%)
Mutual labels:  firestore
firecms
Awesome Firebase/Firestore-based CMS. The missing admin panel for your Firebase project!
Stars: ✭ 686 (+5176.92%)
Mutual labels:  firestore
Python-Course
🐍 This is the most complete course in Python, completely practical and all the lessons are explained with examples, so that they can be easily understood. 🍫
Stars: ✭ 18 (+38.46%)
Mutual labels:  visual-studio-code
vscode-mtalua
Visual Studio Code MTA:SA Lua Syntax Highlighter and Companion
Stars: ✭ 15 (+15.38%)
Mutual labels:  visual-studio-code
vscode-terminal-manager
VSCode Extension to manage Terminals. Lets you add multiple optional terminals and easily switch through them. 🎉
Stars: ✭ 28 (+115.38%)
Mutual labels:  visual-studio-code
firebase-jest-testing
Firebase back-end testing, using Jest.
Stars: ✭ 21 (+61.54%)
Mutual labels:  firestore

Firebase

VS Code Firebase and Firestore snippets


Version Installs Downloads

Supported Languages

  • JavaScript (.js)
  • TypeScript (.ts)
  • JavaScript React (.jsx)
  • TypeScript React (.tsx)
  • Html (.html)
  • Vue (.vue)

Snippets

Firebase

Trigger Description
fireconfig Configure Firebase
firereference Get a reference to the firebase service
fireset Set data to the firebase database
fireretrieve Retrieve data from firebase
fireretrieveloop Retrieve data and loop inside the direct children
fireval Using val() method to retrieve the data inside a listener
fireretrieveonce Retrieve data once
firekey Create a key and simultaneously retrieve the key
fireupdate Updating specific fields
fireremove Remove data at a certain location
firetransaction firebase transactions
fireorderBychild Order results by the value of a specified child key or nested child path
fireorderByvalue Order results by child values
fireorderBykey Order results by child keys
firelimittofirst Sets the maximum number of items to return from the end of the ordered list of results
firelimittolast Sets the maximum number of items to return from the beginning of the ordered list of results
firestartAt Return items greater than or equal to the specified key or value, depending on the order-by method chosen
fireendat Return items less than or equal to the specified key or value, depending on the order-by method chosen
fireequalto Return items equal to the specified key or value, depending on the order-by method chosen
fireexists Returns true if this dataSnapshot contains any data
firehaschild Returns true if this datasnapshot contains the specified child
firehaschildren Returns true is this datasnapshot contains any children
firenumchildren Returns the number of child properties of this datasnapshot
firedetach Removing a listener
firestorageref Get a reference to the storage service, which is used to create references in your storage bucket
firestoragechildref Create a reference to a location lower in the tree, say images.jpg
firestorageurlref Create a reference from a Google Cloud Storage URI or https url
firestoragedownloadfile Getting the download file from firebase storage
firestoragedeletefile Delete a file
firesignupemail Authenticate a new user using email and password
firesigninemail Sign in an existing user
fireauthstate Attach an observer using onAuthStateChanged to retrieve user infomration
firecurrentuser Retrieves the currently logged in user
fireuserprofile Retrieves the user information
fireupdateprofile Updates the user profile
fireproviderinfo Retrieves information from sign in provider
fireupdateemail Set a user email address, the user must have signed in recently
fireemailverify Send an email verification to the user
firesetpass Set a user password, the user must have signed in recently
firepassreset Send a password reset email to a user
firedeleteuser Delete a user account with the delete method
firesignout Sign out the user
firegoogleinstance Get instance of the google provider
fireprovidersignin Sign in with google
firefacebookinstance Get instance of facebook provider
firetwitterinstance Get instance of twitter provider
firegithubinstance Get instance of github provider
firecustomauth Sign in the user using custom authentication
fireanonymously Sign in the user anonymously

Firestore

Trigger Description
initializefirestore Initialize Cloud Firestore through Firebase
adddatafirestore Creating a new collection and document in firestore
setdatafirestore Creates or overwrite a single document, use the set() method
readdatafirestore Read data from a collection in firestore
referencefirestore Add firestore reference
updatefirestore Update the document in firestore
deletedocfirestore Delete a document in firestore
deletefieldfirestore Delete a field in firestore document
wherefirestore where query in firestore
arraycontainsfirestore Using array-contains it filters based on array value
limitfirestore Retrieves the first three value of the field
ordermultifirestore Order by multiple fields in firestore
realtimeupdatefirestore Listens for realtime changes on a document using onSnapshot
arrayunionfieldfirestore Adds an element to an array field
arrayremovefieldfirestore Remove an element from array field
incrementfieldfirestore Increment or decrement a numeric field value
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].