3.0.0 • Published 2 years ago

@pascholda1/vue-runtime-config-plugin v3.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@pascholda1/vue-runtime-config-plugin

A VueJS plugin to read JSON config files per environment at runtime.

Works with Vue2. Vue3 support coming soon.

Installation

npm i @pascholda1/vue-runtime-config-plugin

Usage

Basic Usage

import Vue from 'vue';

import vueRuntimeConfigPlugin from '@pascholda1/vue-runtime-config-plugin';

Vue.use(vueRuntimeConfigPlugin)

(async () => {

  // fetch the config files from /config
  const config = await vueRuntimeConfigPlugin.loadEnvironment({
    environment: process.env.NODE_ENV
  });

  console.log(config)

  // init App
  new Vue({
    render: h => h(App),
  }).$mount('#app');
})

Advanced Usage

import Vue from 'vue';

import {VueRuntimeConfigPlugin} from '@pascholda1/vue-runtime-config-plugin';

const vueRuntimeConfigPlugin = new VueRuntimeConfigPlugin({
  configPath: "/my/config/path",
  staticConfig: process.env
})

Vue.use(vueRuntimeConfigPlugin)

(async () => {

  // fetch the config files from /my/config/path
  const config = await vueRuntimeConfigPlugin.loadEnvironment({
    environment: process.env.NODE_ENV,
    forceFetch: true
  });

  console.log(config)

  // init App
  new Vue({
    render: h => h(App),
  }).$mount('#app');
})

Access the configuration Object / Switch environment at runtime

<template>
  <div id="app">
    <pre>{{ $config }}</pre>
  </div>
</template>

<script>

export default {
  name: 'App',
  created() {
    console.log(this.$config)
  },
  methods: {
    async switchConfigEnvironment(environment) {
      await this.$vueRuntimeConfigPlugin.loadEnvironment({
        environment
      });

      // Note that the $config object is NOT reactive
      await this.$forceUpdate()
    }
  }
};
</script>

Config Files and Config merging

Your config directory should contain min. two Files. The default.config.json and the one for each environment eg. development.config.json

the environment config will be merged into the default config which will be merged into the static config which was passed to the constructor.

If you use nested configurations in your file the plugin will overwrite the whole first level Object.

3.0.0

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago