Runtime Config
All real-world SPAs have to deal with configuration, typcially having to manage settings that vary across mutliple environments. The de facto approach to solve this problem has been to use multiple .env files using a package such as dotenv, which in its own right is a fantastically proven package.
And while it's true that the static dotenv flow has been standardized for quite some time now, it typically involves maintaining build scripts in lockstep with devops pipelines to ensure that pseudo environment-variables are available to your SPA across respective environments. Let's be honest, this can become a bit of a headache and arguably, pseudo-env-vars can feel yucky in frontend code.
What if it didn't have to be that complex? Introducing @spa-tools/runtime-config, a modern hands-off alternative to the aforementioned classic approach. With the Runtime Config you don't have to worry about devops scripts because the correct environment config is automatically available at runtime, which is how the coy name "runtime-config" came about :-).
Installation
To install Runtime Config in your project, use your favorite package manager and run the respective command:
- npm
- Yarn
- pnpm
npm install @spa-tools/runtime-config
yarn add @spa-tools/runtime-config
pnpm add @spa-tools/runtime-config
Quickstart
Choose your preferred implementation:
import { BaseConfigSettings, DomainConfig, RuntimeConfig } from '@spa-tools/runtime-config';
// since we're using Typescript, we define a type for our environment names
type MyAppEnvironments = 'development' | 'staging' | 'production';
// likewise, we define a type for our app's runtime config settings
interface MyAppConfigSettings extends BaseConfigSettings<MyAppEnvironments> {
authClientId: string;
authUserPoolId: string;
loggerClientId: string;
loggerUrl: string;
myAppApiUrl: string;
}
//
// here we define our environment domain-config by mapping our app domain names
// to our respective environment settings
//
// you may notice that there is one additional property in the domain-config
// named "environment" and this is required, which is why MyAppConfigSettings
// extends BaseConfigSettings.
//
const myAppConfigSet: DomainConfig<MyAppConfigSettings> = {
//
// development environment settings (based on domain name)
//
'myapp.dev.com': {
authClientId: 'auth-client-id-dev',
authUserPoolId: 'user-pool-id-dev',
environment: 'development',
loggerClientId: 'logger-client-id-dev',
loggerUrl: 'https://dev.loggingservice.com',
myAppApiUrl: 'https://api.dev.myapp.com',
},
//
// staging environment settings (based on domain name)
//
'myapp.stg.com': {
authClientId: 'auth-client-id-stg',
authUserPoolId: 'user-pool-id-stg',
environment: 'staging',
loggerClientId: 'logger-client-id-stg',
loggerUrl: 'https://stg.loggingservice.com',
myAppApiUrl: 'https://api.stg.myapp.com',
},
//
// production environment settings (based on domain name)
//
'myapp.com': {
authClientId: 'auth-client-id-prod',
authUserPoolId: 'user-pool-id-prod',
environment: 'production',
loggerClientId: 'logger-client-id-prod',
loggerUrl: 'https://loggingservice.com',
myAppApiUrl: 'https://api.myapp.com',
},
//
// finally we define settings for when our app is running locally
//
// notice that we still consider local our "development" backend
// environment but we could map it to any environment we wanted
//
localhost: {
authClientId: 'auth-client-id-dev',
authUserPoolId: 'user-pool-id-dev',
environment: 'development',
loggerClientId: 'logger-client-id-dev',
loggerUrl: 'https://dev.loggingservice.com',
myAppApiUrl: 'https://api.dev.myapp.com',
},
};
//
// here we initialize the runtime config object, utilizing Typescript generics so
// we get the goodness of intelisense when accessing the config in our app
//
export const myAppRuntimeConfig = RuntimeConfig.initialize<MyAppConfigSettings, MyAppEnvironments>(
myAppConfigSet
);
//
// now we can access our runtime config object in our app, which will automatically
// return the settings for the environment our app is running in
//
console.log('What is the current environment context?');
console.log(myAppRuntimeConfig.settings.environment);
console.log("What is MyApp's current API URL?");
console.log(myAppRuntimeConfig.settings.myAppApiUrl);
console.log("Let's use the isRunningLocal property to check if we are running locally...");
if (myAppRuntimeConfig.isRunningLocal) {
console.log('We are indeed running locally!');
} else {
console.log('We are NOT running locally!');
}
console.log("Let's just log the entire runtime config object for good measure...");
console.log(myAppRuntimeConfig);
import { RuntimeConfig } from '@spa-tools/runtime-config';
//
// here we define our environment domain-config by mapping our app domain names
// to our respective environment settings
//
// take note that the "environment" property in the domain-config is required, but
// all other properteis are 100% up to you and your app's needs
//
const myAppConfigSet = {
//
// development environment settings (based on domain name)
//
'myapp.dev.com': {
authClientId: 'auth-client-id-dev',
authUserPoolId: 'user-pool-id-dev',
environment: 'development',
loggerClientId: 'logger-client-id-dev',
loggerUrl: 'https://dev.loggingservice.com',
myAppApiUrl: 'https://api.dev.myapp.com',
},
//
// staging environment settings (based on domain name)
//
'myapp.stg.com': {
authClientId: 'auth-client-id-stg',
authUserPoolId: 'user-pool-id-stg',
environment: 'staging',
loggerClientId: 'logger-client-id-stg',
loggerUrl: 'https://stg.loggingservice.com',
myAppApiUrl: 'https://api.stg.myapp.com',
},
//
// production environment settings (based on domain name)
//
'myapp.com': {
authClientId: 'auth-client-id-prod',
authUserPoolId: 'user-pool-id-prod',
environment: 'production',
loggerClientId: 'logger-client-id-prod',
loggerUrl: 'https://loggingservice.com',
myAppApiUrl: 'https://api.myapp.com',
},
//
// finally we define settings for when our app is running locally
//
// notice that we still consider local our "development" backend
// environment but we could map it to any environment we wanted
//
localhost: {
authClientId: 'auth-client-id-dev',
authUserPoolId: 'user-pool-id-dev',
environment: 'development',
loggerClientId: 'logger-client-id-dev',
loggerUrl: 'https://dev.loggingservice.com',
myAppApiUrl: 'https://api.dev.myapp.com',
},
};
// here we initialize the runtime config object
export const myAppRuntimeConfig = RuntimeConfig.initialize(myAppConfigSet);
//
// now we can access our runtime config object in our app, which will automatically
// return the settings for the environment our app is running in
//
console.log('What is the current environment context?');
console.log(myAppRuntimeConfig.settings.environment);
console.log("What is MyApp's current API URL?");
console.log(myAppRuntimeConfig.settings.myAppApiUrl);
console.log("Let's use the isRunningLocal property to check if we are running locally...");
if (myAppRuntimeConfig.isRunningLocal) {
console.log('We are indeed running locally!');
} else {
console.log('We are NOT running locally!');
}
console.log("Let's just log the entire runtime config object for good measure...");
console.log(myAppRuntimeConfig);