localbase icon indicating copy to clipboard operation
localbase copied to clipboard

A Firebase-Style Database ... Offline!

Results 62 localbase issues
Sort by recently updated
recently updated
newest added

on installing localbase with vite after build, we get the require is not defined coming from let bt = require("ordered-uuid"); Vite doesnt support require

## Motivation When trying to use `localbase` with my NextJS application, the app compiles successfully but shows an error in the terminal when refreshing the browser. ``` \node_modules\localbase\index.js:1 import Localbase...

Tried to pass an array to collection.set and get error saying must be an object. But your examples show an array being passed. What am I doing wrong?? Here's a...

Great work Danny! Makes using indexedDB very easy. But what about version control? Can you suggest a way to recognize that the DB version is not what the app version...

help wanted

**if there is a table named customer. then how can I get the counter of total customers.** **Another scenario is :** if I have multiple status of customer, where active...

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Previous issue was closed because the user found a solution for his case https://github.com/dannyconnell/localbase/issues/29 However, I am getting the issue too and couldn't solve it. I am getting the error...

Wondering if you can retrieve multiple entries from the db - in my testing, i'm only getting a single item. ie: ``` db .collection('skus') .doc({ type: 'LONGBOARD' }) .orderBy('sku') .get()...

There is currently no way to iterate over all collections within a Localbase db. ``` const db = new Localbase('savedPoems'); db.getAll().then((response: IndexedDbType) => console.log('response', response)); ```