firebase-firestore-lite icon indicating copy to clipboard operation
firebase-firestore-lite copied to clipboard

A lightweight cloud firestore library for the browser

Results 27 firebase-firestore-lite issues
Sort by recently updated
recently updated
newest added

Over [here](https://github.com/samuelgozi/firebase-firestore-lite/blob/b3a924e6ded70e62fdddfa2db674d03ad40c135a/src/Database.ts#L127), it checks if attempts is greater than zero. Ideally, it would be great if the variable is named 'maxRetryAttempts' so that it guarantee an execution at-least once. I...

Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @​mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @​OlafConijn in...

dependencies

Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2. Release notes Sourced from semver's releases. v5.7.2 5.7.2 (2023-07-10) Bug Fixes 2f8fd41 #585 better handling of whitespace (#585) (@​joaomoreno, @​lukekarrys) Changelog Sourced from semver's...

dependencies

Howdy folks, I've been working on a very similar implementation for the Godot game engine, as I'm the creator of the main Firebase library for said engine use. I noticed...

Do Transactions work correctly with this library? I notice you only use the [:commit](https://cloud.google.com/firestore/docs/reference/rest/v1/projects.databases.documents/commit) endpoint but not[ :beginTransaction](https://cloud.google.com/firestore/docs/reference/rest/v1/projects.databases.documents/beginTransaction) or [:rollback](https://cloud.google.com/firestore/docs/reference/rest/v1/projects.databases.documents/rollback)?

``` const Auth = require("firebase-auth-lite") const auth = new Auth({ apiKey: "AIzaSyB2U020k1a9t5aBcds68eKe_nzAwDPz7rw", }) const { Database } = require("firebase-firestore-lite") const db = new Database({ projectId: "poj-es", auth, }) const shrink...