Code Monkey home page Code Monkey logo

dynamodb-snapshot-store's Introduction

dynamodb-snapshot-store

build npm downloads climate coverage

This package provides a simple snapshot store implementation on top of Amazon DynamoDB. This is meant to be a general purpose package, and makes no assumptions about the structure or type of your states. The states are serialized to JSON when stored, and deserialized automatically when fetching. For a few examples, view the samples below:

var SnapshotStore = require('dynamodb-snapshot-store');

var snapshotStore = new SnapshotStore({
  region: 'us-east-1',
  accessKeyId: 'access-key-id',
  secretAccessKey: 'secret-access-key',
  tableName: 'snapshots'
});

snapshotStore.store(snapshot)

An atomic write of a snapshot to the store.

var snapshot = {
  snapshotId: '00000000-0000-0000-0000-000000000000',
  state: {
    foo: 'bar'  
  }
};

snapshotStore.store(snapshot)
  .then(function () {
    // the snapshot was stored
  })
  .catch(function (err) {
    // something went wrong
  });
});

snapshotStore.fetch(options)

Fetches the aggregate state from the snapshot store.

var options = {
  snapshotId: '00000000-0000-0000-0000-000000000000'
};

snapshotStore.fetch(options)
  .then(function (snapshot) {
    // =>
    {
      snapshotId: '00000000-0000-0000-0000-000000000000',
      createdAt: 946684800000,
      state: {
        foo: 'bar'
      }
    }
  })
  .catch(function (err) {
    // something went wrong
  });

dynamodb-snapshot-store's People

Contributors

bakerface avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

yonahforst

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.