awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
msiemens avatar

msiemens/tinydb

0
View on GitHub↗
7,529 stars·612 forks·Python·MIT·34 viewstinydb.readthedocs.org↗

Tinydb

TinyDB is a lightweight, document-oriented database and embedded NoSQL engine. It stores data as documents in local files, providing a persistence layer that operates without a separate server process.

The system is an extensible document store featuring a middleware architecture. This allows for the customization of storage backends and the interception of data operations to transform how information is stored and retrieved.

The database manages unstructured data using JSON-based serialization and supports pluggable storage backends for local file persistence.

Features

  • Embedded Databases - Functions as a lightweight database engine bundled directly within applications to manage local state.
  • Local File Storage - Persists structured document data directly onto local disk storage for small-scale projects.
  • JSON-Based Persistence - Persists application data as structured JSON files on the local filesystem.
  • Document Databases - Provides a database engine that manages data in semi-structured JSON documents.
  • Document Stores - Implements a document-oriented data model for storing semi-structured information as flexible documents.
  • Embedded Database Engines - Integrates a NoSQL database engine directly into application processes without external server infrastructure.
  • Local Persistence - Provides local persistence of data in files to avoid the need for a separate database server.
  • JSON Document Stores - Provides a native storage and manipulation system for nested JSON documents.
  • Backend Implementation Extensions - Enables changing how information is persisted by adding custom storage backends.
  • Middleware Logic Extensions - Allows modification of storage behavior and data operations via custom middleware.
  • Extensible - Features a middleware architecture that allows for custom storage backends and data transformation logic.
  • Embedded Database Middleware - Implements a middleware layer to add specialized logic to the data retrieval and storage process.
  • Storage Backend Adapters - Provides an adapter interface that allows swapping default storage mechanisms with custom persistent backends.
  • Database Operation Interceptors - Uses a middleware architecture to intercept and transform database requests before they reach the storage layer.
  • Database Systems - Lightweight document-oriented database for simple applications.
  • Databases - Micro-document-oriented database.

Star history

Star history chart for msiemens/tinydbStar history chart for msiemens/tinydb

How this analysis was created: This summary and feature list are AI-generated from collected project material and can contain mistakes. Stars, license and language are imported from GitHub. Inclusion does not mean that we have tested or audited this project. Check the source documentation for any feature you depend on. Learn more on our About page.

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Start searching with AI

Frequently asked questions

What does msiemens/tinydb do?

TinyDB is a lightweight, document-oriented database and embedded NoSQL engine. It stores data as documents in local files, providing a persistence layer that operates without a separate server process.

What are the main features of msiemens/tinydb?

The main features of msiemens/tinydb are: Embedded Databases, Local File Storage, JSON-Based Persistence, Document Databases, Document Stores, Embedded Database Engines, Local Persistence, JSON Document Stores.

Which projects share features with msiemens/tinydb?

Projects with overlapping indexed features include: louischatriot/nedb — NeDB is a JavaScript embedded NoSQL document store designed for Node.js and the browser. It functions as an in-memory… typicode/lowdb — Lowdb is a lightweight local data persistence library that manages application state as a JSON document. It functions… mbdavid/litedb — LiteDB is a serverless, embedded NoSQL document database for .NET applications. It persists data into a single… mongodb/mongo — This project is a distributed, document-oriented database system designed to store information in flexible,… pubkey/rxdb — This project is a reactive, offline-first NoSQL database engine designed for JavaScript applications. It provides a… ravendb/ravendb — RavenDB is a multi-model NoSQL document database designed for high-performance, ACID-compliant data storage. It…

Projects sharing features with Tinydb

These projects share indexed features with Tinydb. Shared tags can include platform or build tooling; verify the primary use case before treating a result as a replacement.
  • louischatriot/nedblouischatriot avatar

    louischatriot/nedb

    13,540View on GitHub↗

    NeDB is a JavaScript embedded NoSQL document store designed for Node.js and the browser. It functions as an in-memory data store with the option to persist documents to a local file system, ensuring data survives application restarts. The project utilizes a MongoDB-compatible API to perform data operations, allowing it to serve as a lightweight document indexing system and a persistent file database without requiring a separate database server. Capabilities include querying, inserting, updating, and deleting documents, as well as the ability to create indexes on specific fields to accelerate

    JavaScript
    View on GitHub↗13,540
  • typicode/lowdbtypicode avatar

    typicode/lowdb

    22,469View on GitHub↗

    Lowdb is a lightweight local data persistence library that manages application state as a JSON document. It functions as a database utility that stores information directly in local files or browser storage, removing the requirement for a dedicated database server or complex infrastructure. By treating stored data as standard objects and arrays, it provides a straightforward interface for managing application information. The library distinguishes itself through a modular adapter-based architecture that decouples data manipulation from the underlying storage medium. This design allows for the

    JavaScriptdatabaseelectronembeddable
    View on GitHub↗22,469
  • mbdavid/litedbmbdavid avatar

    mbdavid/LiteDB

    9,410View on GitHub↗

    LiteDB is a serverless, embedded NoSQL document database for .NET applications. It persists data into a single portable file, functioning as a BSON data store that resides within the application process rather than running as a separate server. The system is ACID compliant, utilizing write-ahead logging to ensure atomic, consistent, isolated, and durable transactions. It includes built-in encryption to provide secure local data storage and protect files on disk from unauthorized access. The project covers object-document mapping to convert classes into document formats, indexed search capabi

    C#
    View on GitHub↗9,410
  • mongodb/mongomongodb avatar

    mongodb/mongo

    28,158View on GitHub↗

    This project is a distributed, document-oriented database system designed to store information in flexible, hierarchical structures. It supports horizontal scaling through automated sharding and maintains high availability across global clusters using a multi-node replication protocol. By executing multi-document operations as atomic units, the system ensures data integrity and consistency across distributed environments. The platform distinguishes itself by integrating advanced vector-based indexing, which enables semantic similarity searches alongside traditional geospatial and lexical quer

    C++c-plus-plusdatabasemongodb
    View on GitHub↗28,158
Compare all 30 related projects→