🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

dynoxide

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dynoxide

Embedded DynamoDB-compatible engine. Drop-in dynalite replacement.

latest
Source
npmnpm
Version
0.13.0
Version published
Weekly downloads
3.9K
-18.87%
Maintainers
1
Weekly downloads
 
Created
Source

Dynoxide

A fast, lightweight DynamoDB emulator backed by SQLite. Drop-in replacement for DynamoDB Local and dynalite. No Docker, no JVM.

Install

npm install --save-dev dynoxide

Or run directly without installing:

npx dynoxide --port 8000

Usage

Start an HTTP server:

dynoxide --port 8000

With a persistent database:

dynoxide --db-path data.db --port 8000

Then point any DynamoDB SDK at http://localhost:8000:

aws dynamodb list-tables --endpoint-url http://localhost:8000

MCP Server

Dynoxide includes an MCP server for coding agents (Claude Code, Cursor, etc.):

dynoxide mcp
dynoxide mcp --db-path data.db

Import

Load data from a DynamoDB table export into a local Dynoxide instance:

dynoxide import --source ./export-data/ --schema schema.json --output data.db

Supported Platforms

PlatformArchitecture
macOSx64, arm64 (Apple Silicon)
Linuxx64, arm64
Windowsx64

How It Works

This package installs a platform-specific prebuilt binary via npm's optionalDependencies. No compilation, no Docker, no JVM.

The binary is the same one available via Homebrew, GitHub Releases, and crates.io.

Licence

MIT or Apache-2.0, at your option.

Keywords

dynamodb

FAQs

Package last updated on 30 Jul 2026

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