JSPM

d1-sync-local

1.1.2
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 1
    • Score
      100M100P100Q33603F
    • License MIT

    Sync Cloudflare D1 remote databases to local development environment

    Package Exports

      This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (d1-sync-local) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

      Readme

      d1-sync-local

      Sync Cloudflare D1 remote databases to your local development environment with ease.

      Features

      • 🚀 Auto-detection: Automatically reads wrangler.toml to find all D1 databases
      • 🔄 Environment support: Sync from any environment (dev, staging, production)
      • đŸ›Ąī¸ Safe operation: Confirms before overwriting local data
      • 📊 Validation: Shows synced tables and record counts
      • 🎨 Beautiful CLI: Colored output with progress indicators
      • 🌍 Multi-language: Auto-detects language (English, įŽ€äŊ“中文, įšéĢ”ä¸­æ–‡, æ—ĨæœŦčĒž)

      Installation

      npm install -g d1-sync-local

      Or use directly with npx:

      npx d1-sync-local

      Usage

      Navigate to your Cloudflare Workers project directory (where wrangler.toml is located) and run:

      d1-sync-local

      Or use the shorter alias:

      d1sl

      The tool will:

      1. Read your wrangler.toml configuration
      2. Show all available D1 databases
      3. Let you select which remote database to sync from
      4. Sync the data to your local development database
      5. Validate and show the results

      Requirements

      • Node.js >= 14.0.0
      • Wrangler CLI installed (npm install -g wrangler)
      • A Cloudflare Workers project with D1 database configuration

      How it works

      1. Reads wrangler.toml: Automatically detects all D1 database configurations
      2. Exports remote data: Uses wrangler d1 export to get remote database data
      3. Fixes SQL format: Handles D1 export format issues (missing quotes, etc.)
      4. Cleans local database: Removes existing local database files
      5. Imports data: Creates fresh local database with remote data
      6. Validates: Shows imported tables and record counts

      Example

      $ d1-sync-local
      
      🚀 D1 Sync to Local
      
      ✓ Found wrangler.toml
      Local database: my-app-db
      
      ? Select source database to sync from:
      ❯ Local/Default (my-app-db)
        Staging (my-app-db-staging)
        Production (my-app-db-production)
      
      âš ī¸  This will sync my-app-db-staging to local database
      ? All local data will be replaced. Continue? (y/N)
      
      ✓ Export completed
      ✓ Cleaned local database (3 files)
      ✓ Export file processed
      ✓ Import completed
      
      📊 Synced 6 tables:
        ✓ users: 150 records
        ✓ products: 89 records
        ✓ orders: 1203 records
        ✓ categories: 12 records
        ✓ sessions: 567 records
        ✓ logs: 4521 records
      
      ✨ Sync completed successfully!

      Configuration

      The tool reads your wrangler.toml file to find D1 databases:

      # Default/Local database
      [[d1_databases]]
      binding = "DB"
      database_name = "my-app-db"
      database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
      
      # Environment-specific databases
      [env.staging]
      [[env.staging.d1_databases]]
      binding = "DB"
      database_name = "my-app-db-staging"
      database_id = "yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy"
      
      [env.production]
      [[env.production.d1_databases]]
      binding = "DB"
      database_name = "my-app-db-production"
      database_id = "zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzzz"

      Language Support

      The tool automatically detects your system language and displays messages in:

      • English (default)
      • įŽ€äŊ“中文 (Simplified Chinese)
      • įšéĢ”ä¸­æ–‡ (Traditional Chinese)
      • æ—ĨæœŦčĒž (Japanese)

      Manual Language Selection

      You can override the auto-detected language using the D1_SYNC_LANG environment variable:

      # Use Simplified Chinese
      D1_SYNC_LANG=zh-cn d1-sync-local
      
      # Use Traditional Chinese
      D1_SYNC_LANG=zh-tw d1-sync-local
      
      # Use Japanese
      D1_SYNC_LANG=ja d1-sync-local
      
      # Use English
      D1_SYNC_LANG=en d1-sync-local

      Troubleshooting

      "wrangler.toml not found"

      Make sure you run the command in your Cloudflare Workers project directory.

      "No D1 databases found"

      Check that your wrangler.toml has D1 database configurations.

      Permission errors

      Make sure you have the necessary permissions to access the remote databases.

      License

      MIT