Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dynalite

Package Overview
Dependencies
Maintainers
1
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dynalite

A mock implementation of Amazon's DynamoDB built on LevelDB

  • 0.0.19
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
78K
decreased by-12.04%
Maintainers
1
Weekly downloads
 
Created
Source

dynalite

Build Status

A mock implementation of Amazon's DynamoDB, focussed on correctness and performance, and built on LevelDB (well, @rvagg's awesome LevelUP to be precise).

All basic actions and validations have now been implemented, but there are still a number of issues (see below) before this module should be considered for general use.

Example

// Returns a standard Node.js HTTP server
var dynalite = require('dynalite')

// Listen on port 4567
dynalite.listen(4567, function(err) {
  if (err) throw err
  console.log('Dynalite started on port 4567')
})

TODO

  • Add executable script
  • Add config settings, especially for the table delays and strict checking
  • Allow for different persistence types (LevelDOWN-Hyper, etc)
  • Use efficient range scans for Query calls
  • Implement ReturnConsumedCapacity/ConsumedCapacity/ReturnItemCollectionMetrics on all relevant endpoints (nearly done!)
  • Check for any missing ExclusiveStartKey/LastEvaluatedKey functionality (most should be fine)
  • Implement any outstanding secondary index behaviour

Keywords

FAQs

Package last updated on 01 Nov 2013

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc