An Asynchronous Environment Manager for JavaScript and TypeScript Applications.
This library provides tools to manage environment properties in browser based JavaScript and TypeScript applications.
The common way to manage the application properties in browser based JavaScript frameworks is to define environment values in a constant or env file and load them at build stage. This strategy is not suitable for developments where, for example, the final build is deployed in a repositoy manager such as Nexus or Artifactory and reused in diferent environments, or in a microservices architecture where the properties are loaded from a config manager service. This library addresses this and other gaps by allowing, among others, the following behaviors:
Using NPM
npm install --save @kuoki/environment
Using Yarn
yarn add @kuoki/environment
Dependencies
The steps to generate an environment manager are described below. Each of the steps is described in depth, with examples and common hacks, in the documentation of each module.
EnvironmentStore
to store the environment properties.EnvironmentService
to mutate the environment state.EnvironmentQuery
to get the environment properties.EnvironmentSource
as needed to get the environment properties.EnvironmentLoader
to get the properties from the sources.There is a faster way to get started if you want to use all the default implementations, which is to use createEnvironmentModule()
, a factory that creates an EnvironmentModule
and starts the load of properties.
import { createEnvironmentModule, EnvironmentModule, EnvironmentQuery, EnvironmentSource } from '@kuoki/environment';
// env.json = { userName: 'JohnDoe01' }
const fileSource: EnvironmentSource = {
isRequired: true,
load: async () => fetch('env.json').then((response) => response.json())
};
const constSource: EnvironmentSource = {
isRequired: true,
load: () => [{ name: 'John Doe' }]
};
const environmentModule: EnvironmentModule = await createEnvironmentModule([fileSource, constSource]);
export const env: EnvironmentQuery = environmentModule.query;
env.getAll(); // {name:'John Doe',userName:'JohnDoe01'}
Generated using TypeDoc