dynamodb-admin

4.6.1 • Public • Published

dynamodb-admin

npm

GUI for DynamoDB Local, dynalite, localstack etc.

Usage

Use as 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)
  • --host HOST / -h HOST - Host to run on (default: localhost)

You can specify host & port to run on by setting environment variables HOST and PORT respectively. This will override value specified on the command line. This is legacy way to specify the HOST & 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

If you are accessing your database from another piece of software, the AWS_ACCESS_KEY_ID used by that application must match the AWS_ACCESS_KEY_ID you used with dynamodb-admin if you want both to see the same data.

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 host = 'localhost';
const port = 8001;
const server = app.listen(port, host);
server.on('listening', () => {
  const address = server.address();
  console.log(`  listening on http://${address.address}:${address.port}`);
});

Development

Run DYNAMO_ENDPOINT=http://localhost:8000 npm run dev to start dynamodb-admin in development mode (with auto-reloading on change).

See also

Screencast

Screencast

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
4.6.116,485latest

Version History

VersionDownloads (Last 7 Days)Published
4.6.116,485
4.5.07,373
4.4.117
4.4.0305
4.1.0231
4.0.3520
4.0.21
4.0.12,007
4.0.0863
3.2.010
3.1.31
3.1.22
3.1.14
3.1.01
3.0.31
3.0.21
3.0.12
3.0.01
2.0.81
2.0.71
2.0.62
2.0.51
2.0.41
2.0.31
2.0.29
2.0.11
2.0.02
1.14.02
1.13.11
1.13.01
1.12.01
1.11.12
1.11.02
1.10.01
1.9.27
1.9.11
1.8.11
1.8.01
1.7.01
1.6.01
1.5.01
1.4.11
1.4.01
1.3.01
1.2.01
1.1.01
1.0.11
1.0.01

Package Sidebar

Install

npm i dynamodb-admin

Weekly Downloads

27,874

Version

4.6.1

License

MIT

Unpacked Size

839 kB

Total Files

43

Last publish

Collaborators

  • aaronshaf
  • matheusvellone
  • lordciccio
  • rchl