JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 226
  • Score
    100M100P100Q79889F
  • License ISC

A browser-based viewer for ElectroDB entities and DynamoDB data

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 (electro-viewer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Electro Viewer

    ⚠️ Under Development: This package is currently under active development. Some bugs and breaking changes can be expected.

    Electro Viewer is a tool to help you quickly browse your ElectroDB enties by reading the configuration files in your project.

    CleanShot 2025-10-26 at 12 27 16@2x-min

    Features

    • 🔍 Browse ElectroDB Entities - Automatically discovers and displays your ElectroDB entity definitions
    • 🎯 Interactive Querying - Build and execute queries with a visual interface
    • 🔑 Key Builder - Helps construct partition and sort keys using ElectroDB's patterns
    • 📊 Entity Explorer - View entity schemas, indexes, and attributes
    • 🔐 AWS SSO Support - Works with AWS profiles and SSO authentication

    Roadmap

    • Read support
    • Add support
    • Delete support
    • Update support
    • Custom Template String support
    • Scan support
    • Run arbitrary queries
    • Query read units used statistics

    Installation

    pnpm link --global

    Or in your project:

    pnpm add -D electro-viewer

    Configuration

    Create an electro-viewer-config.ts file in your project root:

    export const config = {
      // AWS profile name from ~/.aws/credentials or ~/.aws/config
      profile: "your-aws-profile",
    
      // AWS region (optional - uses profile's default if not specified)
      region: "us-east-1",
    
      // Paths or glob patterns to your ElectroDB entity files
      // Relative paths from your project root
      // Examples:
      //   ["./entities.ts"] - Single file
      //   ["./packages/*/entities.ts"] - Glob pattern
      //   ["./entities.ts", "./custom/*.ts"] - Mix of direct paths and globs
      entityConfigPaths: ["./path/to/your/entities.ts"],
    
      // Optional: Path to tsconfig.json (defaults to "./tsconfig.json")
      tsconfigPath: "./tsconfig.json",
    
      // Optional: Environment variables needed by your entities file
      env: {
        IS_PERMISSIONED_ENV: "false",
        NODE_ENV: "development",
      },
    } as const;
    
    export type ElectroViewerConfig = typeof config;
    Option Type Required Default Description
    profile string Yes - AWS profile name
    region string No Profile default AWS region
    entityConfigPaths string[] Yes - Paths or glob patterns to entity files
    tsconfigPath string No "./tsconfig.json" Path to tsconfig.json
    env Record<string, string> No {} Environment variables

    Usage

    SST

    If you're using SST, you can add a custom commmand to the multiplexer to automatically start Electro Viewer when you run sst start:

    new sst.x.DevCommand("ElectroViewer", {
      link: [myTable],
      dev: {
        autostart: true,
        command: "pnpm electro-viewer",
      },
    });

    How It Works

    Electro Viewer reads your ElectroDB entities configuration files to understand the PK/SK structure of your entities. When running, we'll use the AWS SDK along with the AWS CLI to query DynamoDB to make it easier to query entities.

    Make sure your AWS profile has permissions to:

    • dynamodb:Query
    • dynamodb:GetItem
    • Access to the tables you want to query