
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
jflatdb
Advanced tools
🚀 jflatdb is a lightweight, file-based JSON database system designed for developers who want the simplicity of NoSQL with query features inspired by SQL.
No servers, no external dependencies — just plug-and-play storage with indexing, queries, and persistence.
pip install jflatdb
or from source
git clone https://github.com/jflatdb/jflatdb.git
cd jflatdb
pip install .
from jflatdb.database import Database
db = Database("users.json", password="your-password")
# Create or insert data
db.insert({"name": "Akki", "email": "akki@example.com"})
# Find records
users = db.find({"name": "Akki"})
# Advanced queries with operators
# Greater than, less than, etc.
young_users = db.find({"age": {"$gt": 18, "$lt": 30}})
# IN operator
specific_ids = db.find({"id": {"$in": [1, 2, 3]}})
# LIKE for pattern matching
names_starting_with_a = db.find({"name": {"$like": "A%"}})
# BETWEEN
ages_in_range = db.find({"age": {"$between": [20, 30]}})
# Update records
db.update({"name": "Akki"}, {"email": "new@email.com"})
# Delete records
db.delete({"name": "Akki"})
jflatdb/
├── jflatdb/
│ ├── __init__.py
│ ├── database.py
│ ├── query_engine.py
│ └── indexing.py
| ├── scheme.py
├── tests/
├── examples/
├── setup.py
├── README.md
└── LICENSE
We welcome contributions from the community!
To get started:
Fork the repo
Create a new branch: git checkout -b feature-name
Make your changes and commit: git commit -m 'Add feature'
Push to your branch: git push origin feature-name
Open a Pull Request
Please read our CONTRIBUTING.md for full guidelines.
This project is licensed under the MIT License - see the LICENSE file for details.
Developed and maintained by Akki.
Your contributions make this project better — whether it's reporting a bug, suggesting a feature, improving the documentation, or writing code. We welcome developers of all levels to participate!
If you like this project, consider ⭐ starring it and sharing it with others.
Together, let’s build something awesome with jflatdb.
Happy coding! 🚀
FAQs
A lightweight JSON-based flat file database system.
We found that jflatdb demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.