All Projects → aaronshaf → Dynamodb Admin

aaronshaf / Dynamodb Admin

Licence: mit
GUI for DynamoDB Local or dynalite

Projects that are alternatives of or similar to Dynamodb Admin

Aws Toolkit Eclipse
AWS Toolkit for Eclipse – an open-source plugin for developing, deploying, and managing AWS applications.
Stars: ✭ 252 (-68.62%)
Mutual labels:  aws, dynamodb
Dynamon
😈 Dynamon is GUI client for DynamoDB, can connect local dynamodb.
Stars: ✭ 324 (-59.65%)
Mutual labels:  aws, dynamodb
Arc.codes
The Architect web site! 🌩
Stars: ✭ 271 (-66.25%)
Mutual labels:  aws, dynamodb
Serverless Analytics
Track website visitors with Serverless Analytics using Kinesis, Lambda, and TypeScript.
Stars: ✭ 219 (-72.73%)
Mutual labels:  aws, dynamodb
Dazn Lambda Powertools
Powertools (logger, HTTP client, AWS clients, middlewares, patterns) for Lambda functions.
Stars: ✭ 501 (-37.61%)
Mutual labels:  aws, dynamodb
Terraform Aws Tfstate Backend
Terraform module that provision an S3 bucket to store the `terraform.tfstate` file and a DynamoDB table to lock the state file to prevent concurrent modifications and state corruption.
Stars: ✭ 229 (-71.48%)
Mutual labels:  aws, dynamodb
Lambdaguard
AWS Serverless Security
Stars: ✭ 300 (-62.64%)
Mutual labels:  aws, dynamodb
Faraday
DynamoDB client for Clojure
Stars: ✭ 193 (-75.97%)
Mutual labels:  aws, dynamodb
Dynogels
DynamoDB data mapper for node.js. Originally forked from https://github.com/ryanfitz/vogels
Stars: ✭ 471 (-41.34%)
Mutual labels:  aws, dynamodb
Aws Mobile Appsync Chat Starter Angular
GraphQL starter progressive web application (PWA) with Realtime and Offline functionality using AWS AppSync
Stars: ✭ 449 (-44.08%)
Mutual labels:  aws, dynamodb
Dynamodb Toolbox
A simple set of tools for working with Amazon DynamoDB and the DocumentClient
Stars: ✭ 752 (-6.35%)
Mutual labels:  aws, dynamodb
Dynamodb Gui Client
DynamoDb GUI Client
Stars: ✭ 540 (-32.75%)
Mutual labels:  aws, dynamodb
Dialetus Service
API to Informal dictionary for the idiomatic expressions that each Brazilian region It has
Stars: ✭ 202 (-74.84%)
Mutual labels:  aws, dynamodb
Komiser
☁️ Cloud Environment Inspector 👮🔒 💰
Stars: ✭ 2,684 (+234.25%)
Mutual labels:  aws, dynamodb
Aws Mobile React Native Starter
AWS Mobile React Native Starter App https://aws.amazon.com/mobile
Stars: ✭ 2,247 (+179.83%)
Mutual labels:  aws, dynamodb
Dynamodb Documentclient Cheat Sheet
DynamoDB JavaScript DocumentClient cheat sheet
Stars: ✭ 293 (-63.51%)
Mutual labels:  aws, dynamodb
Aws Cost Saver
A tiny CLI tool to help save costs in development environments when you're asleep and don't need them!
Stars: ✭ 178 (-77.83%)
Mutual labels:  aws, dynamodb
Realworld Dynamodb Lambda
λ serverless backend implementation for RealWorld using AWS DynamoDB + Lambda
Stars: ✭ 185 (-76.96%)
Mutual labels:  aws, dynamodb
Laravel Dynamodb
Eloquent syntax for DynamoDB
Stars: ✭ 342 (-57.41%)
Mutual labels:  aws, dynamodb
Serverless Dynamodb Local
Serverless Dynamodb Local Plugin - Allows to run dynamodb locally for serverless
Stars: ✭ 530 (-34%)
Mutual labels:  aws, dynamodb

dynamodb-admin

npm CircleCI

GUI for DynamoDB Local, dynalite, localstack etc.

Usage

Use as a globally installed app

npm install -g dynamodb-admin

# For Windows:
set DYNAMO_ENDPOINT=http://localhost:8000
dynamodb-admin

# For Mac/Linux:
DYNAMO_ENDPOINT=http://localhost:8000 dynamodb-admin

Options:

  • --open / -o - opens server URL in a default browser on start
  • --port PORT / -p PORT - Port to run on (default: 8001)

You can also specify port to run on by setting environment variable PORT to given number. This will override value specified on the command line. This is legacy way to specify PORT.

If you use a local dynamodb that cares about credentials, you can configure them by using the following environment variables AWS_REGION AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY

For example with the amazon/dynamodb-local docker image you can launch dynamodb-admin with:

AWS_REGION=eu-west-1 AWS_ACCESS_KEY_ID=local AWS_SECRET_ACCESS_KEY=local dynamodb-admin

Use as a library in your project

const AWS = require('aws-sdk');
const {createServer} = require('dynamodb-admin');

const dynamodb = new AWS.DynamoDB();
const dynClient = new AWS.DynamoDB.DocumentClient({service: dynamodb});

const app = createServer(dynamodb, dynClient);

const port = 8001;
const server = app.listen(port);
server.on('listening', () => {
  const address = server.address();
  console.log(`  listening on http://0.0.0.0:${address.port}`);
});

See also

Screencast

Screencast

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].