Skip to content
hypecavess edited this page Jul 6, 2025 · 1 revision

Welcome to Flow.db Wiki! 👋

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.

📚 Documentation Structure

⚡ Quick Start

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);

🔑 Key Features

  • 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

🤝 Community

📖 Latest Updates

Check our GitHub Releases page for the latest updates and changes.

Clone this wiki locally