GithubHelp home page GithubHelp logo

cta-silo's Introduction

cta-silo

Build Status Coverage Status codecov

Silo Modules for Compass Test Automation, One of Libraries in CTA-OSS Framework

General Overview

Overview

The cta-silo provides a local storage to store data (documents). Currently, the cta-silo uses NeDB, the file-based JavaScript Database.

Guidelines

We aim to give you brief guidelines here.

  1. Usage
  2. Configuration
  3. Contracts

1. Usage

cta-silo extends Brick (cta-brick). In order to use it, we need to provide a configuration. The cta-silo has no dependencies.

const config = {
  name: 'silo-01',
  module: 'cta-silo',
  properties: {
    filename: `${__dirname}${path.sep}silo.db`,
  },
};

The data will be stored in silo.db file.

back to top

2. Configuration

The configuration requires properties.filename.

const config = {
  ...
  properties: {
    filename: `absolute/path/to/a/storage/file`,
  },
};

The properties.filename must be a filename with absolute path. The properties provide a configuration to NeDB.

back to top

3. Contracts

| nature.type | nature.quality | payload | --- | --- | --- | --- | documents | backup | { doc: { id: '01' } } or { doc: [ { id: '01' }, { id: '02' } ] } | documents | restore | { query: {}, clear: true } | documents | clear | { query: {} }

back to top


To Do

Considerations

Alternatives to NeDB are leveldb and EJDB


cta-silo's People

Contributors

kiettisak-angkanawin avatar nattapongreuters avatar panit-tr avatar pattama avatar suravee avatar

Watchers

 avatar

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.