Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

better-local-dynamo

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

better-local-dynamo

A Node.js wrapper of AWS DynamoDB Local and utilities

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

ORIGINAL REPO: https://github.com/Medium/local-dynamo - thanks for the great work!

Unfortunately, it felt like the original Medium repo was stagnant and had some amazing unmerged PRs. So, I grabbed them, merged them, and hope to keep improving this library!

Please leave issues and, most importantly, PRs - I hope to keep this repo as active as necessary.

A Node.js wrapper of AWS DynamoDB Local

This is a thin wrapper of the AWS DynamoDB Local. You can start the DynamoDB Local within a Node.js program and easily specify where the database files should be.

Official Amazon release notes can be found at http://aws.amazon.com/releasenotes/SDK/JavaScript

Installing

npm install better-local-dynamo

Usage

localDynamo = require('local-dynamo');

localDynamo.launch({
  dir: '/database/dir', // null will run DynamoDB in memory; defaults to null
  port: 4567, // defaults to 8000
  cors: [ 'http://whitelisted-domain.com' ], // defaults to '*'
  heap: '512m', // defaults to JVM default values
  version: '2015-07-16_1.0' // defaults to 'latest'
});

Things I'd love to do: (feel free to open a PR)

  • Reduce dependencies
  • Convert to promises
  • Fix and reimplement CLI
  • Add a logger
  • Fix tests

Keywords

dynamo

FAQs

Package last updated on 04 Apr 2018

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