0.6.0-alpha • Published 5 years ago

dynaflo v0.6.0-alpha

Weekly downloads
2
License
BSD
Repository
github
Last release
5 years ago

Dynaflo

Dynaflo is a wrapper around the AWS DynamoDB SDK for node. Dynaflo's goal is to make it easier to work with the AWS SDK while staying true to the DynamoDB way of doing things. Wherever possible, it uses the termonology set forth in the AWS SDK.

Quick Start

$ npm install --save dynaflo
import Dynaflo from 'dynaflo';
const d = new Dynaflo(config);

d.table('Movies')
  .get({title: 'Fantastic Beasts'})
  .run()
  .then(movie => {
    console.log(movie.title); // Fantastic Beasts
  })
  .catch(err => {
    console.error(err);
  });

Deeper Dive

Read through the full documentation here.

Contributing

Running DynamoDB locally

Make sure you have docker installed and run the docker image...

$ docker run -p 7777:7777 trevorhanus/dynamodb-local

Testing

clone repo

$ git clone <clone url>

install dependencies

$ npm install

run tests

$ npm test

Todo

  • Get docs hosted on Gitlab
  • Verify query method has all modifiers it needs
  • Finish scan method
  • Finish BatchGet
  • Finish BatchWrite
0.6.0-alpha

5 years ago

0.5.1-alpha

5 years ago

0.5.0-alpha

5 years ago

0.4.0

6 years ago

0.3.0

7 years ago

0.2.5

7 years ago

0.2.4

7 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.4

7 years ago