Coder Social home page Coder Social logo

configuration-js's Introduction

Javascript microservice configuration library

Build Status

Production-ready configuration for microservices. Written in TypeScript. Library works with nodejs apps and with browsers*.

Library created for follow up corporate standards of application configuration.

Installation

npm install --save @spacetab-io/configuration-js
// or
yarn add @spacetab-io/configuration-js

Usage

By default, path to configuration directory and application stage loading from /app/configuration with local stage.

  1. Simple
import { Configuration } from '@spacetab-io/configuration-js';

const conf = new Configuration();
conf.load();

console.log(conf.all()); // get all config
console.log(conf.get('foo.bar')); // get nested key use dot notation
  1. If u would like override default values, you can pass 2 arguments to class constructor or set up use setters.
import { Configuration } from '@spacetab-io/configuration-js';

const conf = new Configuration('./configuration', 'test');
// or
// conf.path = './configs';
// conf.stage = 'local';
conf.load();

conf.get('foo'); // full example on the top
  1. If the operating system has an env variables CONFIG_PATH and STAGE, then values for the package will be taken from there.
export CONFIG_PATH=/configuration
export STAGE=prod
import { Configuration } from '@spacetab-io/configuration-js';

const conf = new Configuration('./configuration', 'test');
conf.load(); // loaded files from /configuration for prod stage.

conf.get('foo'); // full example on the top
  1. If u want to see logs and see how load process working, pass you logger to property:

Pass it like this:

import { Configuration, StdoutConsoleLogger } from '@spacetab-io/configuration-js';

const conf = new Configuration();
conf.logger = new StdoutConsoleLogger();
conf.load();

conf.get('foo'); // full example on the top

Or if you would like use external logger, like Winston, you can integrate it with LoggerInterface. Just a write the adapter like as WinstonConsoleLogger.

For now, by default library support one Winston transport called Console. Okay, let's go use adapter for him...

First, install logger:

npm install --save winston
// or yarn add winston

Second, pass you logger to property like this:

import { Configuration, WinstonConsoleLogger, StdoutConsoleLogger } from '@spacetab-io/configuration-js';

const conf = new Configuration();
conf.logger = new WinstonConsoleLogger(winston.createLogger({
  transports: [new winston.transports.Console()]
}));

conf.load();

conf.get('foo'); // get value of `foo`

How to usage library with SPA apps?

Note:
https://github.com/spacetab-io/static-server-php is required for usage on the server/cloud.

For most cases, this Dockerfile can help your application build's in the cloud.

It simple. Step by step:

  1. Create an vue app for example
vue create vue-app
  1. Install this package
npm install --save @spacetab-io/configuration-js
  1. Put config files like this
  2. Change vue.config.js to build final config to global variables:
const { Configuration, StdoutConsoleLogger } = require('@spacetab-io/configuration-js');

module.exports = {
  lintOnSave: false,
  chainWebpack: config => {
    config.plugin('html').tap(options => {
      const conf = new Configuration('./configuration');
      conf.logger = new StdoutConsoleLogger(); // new StdoutConsoleLogger(true); // for debug
      conf.load();

      options[0].__config = conf.asEscapedJson();
      options[0].__stage = conf.stage;

      return options;
    });
  }
};
  1. Add following code to index.html to top of <head> html tag (before all scripts):
<head>
  <% if (htmlWebpackPlugin.options.__stage === 'local') { %>
    <script>
      window.__config = JSON.parse("<%= htmlWebpackPlugin.options.__config %>");
      window.__stage = '<%= htmlWebpackPlugin.options.__stage %>';
      window.__vcs = '';
    </script>
  <% } %>
<!-- ... meta tags and other code -->
  1. Add globals to .eslintrc:
"globals": {
  "__config": "readonly",
  "__stage": "readonly",
  "__vcs": "readonly"
 },
  1. Run application.
npm run serve

Full example available at here.

License

The MIT License

Copyright © 2021 spacetab.io, Inc. https://spacetab.io

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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.