0.1.0 • Published 7 years ago

dynamito-memory v0.1.0

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

Logo

AWS Dynamo emulation.

Dyanamito Memory

Library to simulate DynamoDb in memory. Useful to develop using Dynamo.

Configuring Your Dynamito

    import Dynamito from 'dynamito';
    import DynamitoMemory from 'dynamito-memory';

    var dynamitoConfig = {
        accessKeyId: config.aws.awsKey,
        secretAccessKey: config.aws.awsSecret,
        
        region: config.dynamo.region,
        endpoint: config.dynamo.uri,
        
        // Override default core function to a memory strategy.
        core: DynamitoMemory
    };
    Dynamito.configure(dynamitoConfig);

After this, your Dynamito will be saving data in memory.

TODO

  1. Remove Winston from core library.

Contributing

The Par Mais Tecnologia encourages participation. If you feel you can help in any way, be it with bug reporting, documentation, examples, extra testing, or new features feel free to create an issue, or better yet, [submit a Pull Request. For more information on contribution please see our Contributing guide.

License

Copyright (c) 2017 Par 6 Tecnologia LTDA; Licensed under Apache 2.0.