0.0.3 • Published 5 years ago

store-loader-service v0.0.3

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

Build Status Coverage Status

store loader service

a service that handles entities persistence from a cloud bucket into a store, reacting to the event triggered by the update of the bucket content

Installation

npm install @jtviegas/store-loader-service

Usage

required environment variables or configuration properties

  • STORELOADERSERVICE_AWS_REGION
  • STORELOADERSERVICE_AWS_ACCESS_KEY_ID
  • STORELOADERSERVICE_AWS_ACCESS_KEY
  • STORELOADERSERVICE_DATA_DESCRIPTOR_FILE
  • for testing purposes: STORELOADERSERVICE_TEST: { bucket_endpoint: 'http://localhost:5000' , store_endpoint: 'http://localhost:8000' }

code snippet example

...
const config = {
    STORELOADERSERVICE_AWS_REGION: 'eu-west-1'
        , STORELOADERSERVICE_AWS_ACCESS_KEY_ID: process.env.ACCESS_KEY_ID
        , STORELOADERSERVICE_AWS_ACCESS_KEY: process.env.ACCESS_KEY
        , STORELOADERSERVICE_DATA_DESCRIPTOR_FILE: 'data.spec'
}
const service = require('@jtviegas/store-loader-service')(config);
...
service.load(app, entity, environment, bucket, callback);

Check the test folder in source tree.

Tests

npm test

Contributing

just help yourself and submit a pull request