We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was looking for a library that would keep my state consistent, this is my choice, i'm gonna recommend my friend using this library too, tsym.
Initial state:
{ "admasd": { "12831": true } }
await db.push('/acasd/-12831123123', true);
Final state:
{ "admasd": { "12831": true, "-12831123123": true }, "acasd": { "-12831123123": true } }
Perfect, just like i expected.
"use strict"; import { createRequire } from 'module'; const require = createRequire(import.meta.url); const { JsonDB, Config } = require('node-json-db'); const db = new JsonDB(new Config("settings", true, false, '/'));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was looking for a library that would keep my state consistent, this is my choice, i'm gonna recommend my friend using this library too, tsym.
Initial state:
await db.push('/acasd/-12831123123', true);
Final state:
Perfect, just like i expected.
The text was updated successfully, but these errors were encountered: