Git Product home page Git Product logo

layers's Introduction

Layers

This is a tool that allows for processing layered configuration files

Layered configuration files are quite useful when one wants to describe the configuration for different environments in terms of deltas. Most of the time one needs to override properties from a base environment in order to minimize duplication in configuration and thus minimize the risk of mistakes.

The files are merged based on an additive principle, so if you have a base file

{
  "key1": "1a",
  "key2": "2a",
  "subtree": {
    "key3": "3a",
    "key4": "4a",
    "key5": "5a"
  }
}

and an overlay file

{
  "key1": "1b",
  "subtree": {
    "key3": "3b",
  }
}

then you will get a final outcome of

{
  "key1": "1b",
  "key2": "2a",
  "subtree": {
    "key3": "3b",
    "key4": "4a",
    "key5": "5a"
  }
}

It is also possible to have multiple layers.

Often you will want to process a directory of files. Then you can use a naming convention for the top level directories:

a
b-from-a
c-from-b

How to run the program:

$ DEBUG=* node index.js sample c ./out

layers's People

Contributors

gudmojo avatar pshomov avatar

Watchers

 avatar  avatar  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.