New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@contentrain/query

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contentrain/query

Core package for Contentrain SDK, providing fundamental functionality and types

4.0.0
latest
Version published
Weekly downloads
10
400%
Maintainers
1
Weekly downloads
 
Created

@contentrain/query

Core package of the Contentrain SDK. Originally designed for JSON-based content management, now extended with SQLite integration for enhanced performance and scalability.

Features

Core Features (JSON-based)

  • 📦 JSON file-based content management
  • 🌍 Multi-language support with JSON files
  • 💾 LRU caching with size-based eviction
  • 🔍 Type-safe query operations
  • 📝 Full TypeScript support

SQLite Extension Features

  • 🚀 High-performance SQLite database integration
  • 🔄 Advanced relation management (One-to-One & One-to-Many)
  • 🗃️ Efficient data indexing and querying
  • 🔒 Thread-safe database operations
  • 📊 Advanced filtering and sorting
  • 🎯 Efficient pagination
  • 🌐 Enhanced translation support

Installation

# Using npm
npm install @contentrain/query

# Using yarn
yarn add @contentrain/query

# Using pnpm
pnpm add @contentrain/query

Usage

JSON-based Usage (Original)

import { ContentrainSDK } from '@contentrain/query';

// Initialize SDK with JSON files
const sdk = new ContentrainSDK({
  contentDir: './content',  // Directory containing JSON files
  defaultLocale: 'en'
});

// Query JSON content
const posts = await sdk.query('posts')
  .where('status', 'eq', 'publish')
  .get();

// Load with translations
const trPosts = await sdk.query('posts')
  .locale('tr')
  .get();

SQLite Usage (Extended Feature)

import { SQLiteQueryBuilder, BaseSQLiteLoader } from '@contentrain/query';

// Initialize SQLite loader
const loader = new BaseSQLiteLoader('path/to/database.db');

// Create SQLite query builder
const builder = new SQLiteQueryBuilder('posts', loader);

// Execute SQLite query
const result = await builder
  .where('status', 'eq', 'publish')
  .get();

Data Management

JSON-based Storage

  • Content stored in JSON files
  • Directory-based organization
  • File-based translations
  • Simple version control with Git

SQLite Storage

  • Relational database storage
  • Optimized for querying and relations
  • Efficient data indexing
  • Better performance for large datasets

Relations

JSON Relations

// JSON-based relation loading
const posts = await sdk.query('posts')
  .include('author')
  .get();

SQLite Relations

interface Post {
  id: string;
  title: string;
  author_id: string;
  _relations?: {
    author: Author;
    categories: Category[];
  }
}

// One-to-One in SQLite
const post = await builder
  .include('author')
  .where('id', 'eq', '123')
  .first();

// One-to-Many in SQLite
const postWithCategories = await builder
  .include('categories')
  .where('id', 'eq', '123')
  .first();

Translations

JSON Translations

  • Separate JSON files for each locale
  • File-based translation management
  • Git-friendly structure

SQLite Translations

// Dedicated translation tables
const trPost = await builder
  .locale('tr')
  .where('id', 'eq', '123')
  .first();

// Fallback support
const result = await builder
  .locale('tr')
  .include(['author', 'categories'])
  .get();

API Reference

ContentrainSDK (JSON-based)

class ContentrainSDK {
  constructor(options: ContentLoaderOptions)
  query<T extends QueryConfig>(model: string): ContentrainQueryBuilder<T>
  load<T>(model: string): Promise<LoaderResult<T>>
}

SQLiteQueryBuilder (SQLite Extension)

class SQLiteQueryBuilder<T extends DBRecord> {
  constructor(model: string, connection: BaseSQLiteLoader)

  // Query Methods
  where<K extends keyof T>(
    field: K,
    operator: Operator,
    value: T[K] | T[K][]
  ): this

  include(relations: string | string[]): this
  orderBy(field: keyof T, direction?: 'asc' | 'desc'): this
  limit(count: number): this
  offset(count: number): this
  locale(code: string): this

  // Execution Methods
  get(): Promise<QueryResult<T>>
  first(): Promise<T | null>
  count(): Promise<number>
}

Best Practices

JSON vs SQLite Usage

// ✅ Use JSON when:
// - Small to medium dataset
// - Git-based version control is priority
// - Simple content structure
const posts = await sdk.query('posts').get();

// ✅ Use SQLite when:
// - Large dataset
// - Complex relations
// - Performance is critical
// - Advanced querying needed
const posts = await builder
  .where('status', 'eq', 'publish')
  .include(['author', 'categories'])
  .orderBy('created_at', 'desc')
  .limit(10)
  .get();

Performance Considerations

JSON Storage
  • Keep files organized in directories
  • Use appropriate file naming
  • Consider file size for large datasets
SQLite Storage
  • Use appropriate indexes
  • Optimize relation queries
  • Implement pagination
  • Use eager loading for relations

Error Handling

try {
  const result = await builder
    .where('status', 'eq', 'publish')
    .get();
} catch (error) {
  if (error instanceof SQLiteError) {
    // Handle SQLite specific errors
  } else if (error instanceof ValidationError) {
    // Handle validation errors
  } else if (error instanceof RelationError) {
    // Handle relation errors
  } else if (error instanceof FileSystemError) {
    // Handle JSON file system errors
  }
}

Migration Guide

From JSON to SQLite

  • Initialize SQLite database
  • Import JSON content
  • Set up relations
  • Update queries to use SQLiteQueryBuilder
  • Test and verify data integrity

Contributing

  • Fork the repository
  • Create your feature branch (git checkout -b feature/amazing-feature)
  • Commit your changes (git commit -m 'Add some amazing feature')
  • Push to the branch (git push origin feature/amazing-feature)
  • Open a Pull Request

License

MIT

FAQs

Package last updated on 20 Feb 2025

Did you know?

Socket

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.

Install

Related posts