npm.io
0.1.0 • Published 9 years ago

dynamito-memory

Licence
ISC
Version
0.1.0
Deps
1
Vulns
0
Weekly
0

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.