lowdb icon indicating copy to clipboard operation
lowdb copied to clipboard

Simple and fast JSON database

Results 11 lowdb issues
Sort by recently updated
recently updated
newest added

Now lowdb alway beautifier json file. But i want it's minifier for best perfomance. How i can do that? ps: My DB can have 100000 record and may be have...

From my understanding read() is supposed to read the file, and put it into `db`, but using `console.log` shows the old values. `{ "users": [ { "tag": "user#1111", "point": 4...

So I was searching for a simple enough "database" to use in an Electron app. I did find this repository, but after reading the first line in the Readme, I...

I can't find the remove method, for remove object of json database file, can someone help me ?

Source module: ```ts // https://www.npmjs.com/package/lowdb/v/1.0.0 import low from 'lowdb'; import FileSync from 'lowdb/adapters/FileSync'; const adapter = new FileSync('./database/db.json'); const db = low(adapter); // Set some defaults db.defaults({ bots: [], deviceDescriptors:...

### Error ``` C:\Users\AngelHdz\Documents\Development\JavaScript\projects\lowdb>npm run dev > [email protected] dev > ts-node-dev --respawn src/main.ts [INFO] 22:54:30 ts-node-dev ver. 2.0.0 (using ts-node ver. 10.8.0, typescript ver. 4.7.2) Compilation error in C:\Users\AngelHdz\Documents\Development\JavaScript\projects\lowdb\src\main.ts Error:...

Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 3.0.0 to 3.0.1. Commits f545bdb 3.0.1 c57d4c2 fix a few old XO issues for backport 419250f Fix potential ReDoS (#37) See full diff in compare view [![Dependabot...

dependencies

lowdb 1.0 worked fine with jest, but 3.0 does not seem to work with jest 27.5.1. Does anyone know how to fix it? Thx My sample 3.0 `index.test.ts` code: ```...

I have a project set up with nodejs and lowdb. Nodejs version: v16.16.0 Lowdb: v3.0.0 Issue persisting data after restart: ````` import { join, dirname } from 'path' import {...