-
Notifications
You must be signed in to change notification settings - Fork 0
Home
hypecavess edited this page Jul 6, 2025
·
1 revision
Flow.db is a modern, lightweight JSON document database designed for Node.js applications. This wiki contains comprehensive documentation about installation, usage, and best practices.
- Installation Guide - Get started with Flow.db
- API Reference - Detailed API documentation
- Advanced Usage - Advanced features and configurations
- Examples - Code examples and use cases
- FAQ - Frequently asked questions
- Contributing - How to contribute to Flow.db
import { Database } from 'flow.db';
// Initialize database
const db = new Database({
path: '.flow',
encryption: true,
autoBackup: true
});
// Store data
db.set('users', [
{ id: 1, name: 'John Doe' }
]);
// Query data
const users = db.find('users', user => user.id === 1);- Type Safety: Built with TypeScript for robust type checking
- Schema Validation: Ensure data integrity with JSON schema validation
- Encryption: Secure your data with built-in encryption
- Automatic Backups: Never lose your data with automated backup system
- Rich Querying: Powerful array operations and flexible queries
- Performance: In-memory caching for fast data access
Check our GitHub Releases page for the latest updates and changes.