npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@avanio/variable-util

v0.8.1

Published

Utility to get variables from multiple resources

Downloads

310

Readme

@avanio/variable-util

getConfigVariable

getConfigVariable is a utility function that extracts configuration values from different sources like environment variables and even fetches remote configuration values. Also have ability to parse (and verify) string, URL and JSON stringified or semicolon separated object values.

Installation

npm i @avanio/variable-util

Documentation

Usage examples

import {
	env,
	FetchConfigLoader,
	getConfigVariable,
	JsonConfigParser,
	SemicolonConfigParser,
	stringParser,
	UrlParser,
	ValidateCallback,
} from '@avanio/variable-util';

// example zod schema for the object validation
const objectSchema = z.object({
	foo: z.string(),
	baz: z.string(),
});

type ObjectSchema = z.infer<typeof objectSchema>;

// And optional object validation callback function
const validate: ValidateCallback<ObjectSchema> = async (data: ObjectSchema) => {
	const result = await objectSchema.safeParseAsync(data);
	if (!result.success) {
		return {success: false, message: result.error.message};
	}
	return {success: true};
};

// Define the parser instances for the config values
const semicolonConfigParser = new SemicolonConfigParser<ObjectSchema>({validate}); // optional validate callback
const jsonConfigParser = new JsonConfigParser<ObjectSchema>({validate}); // optional validate callback
const urlParser = new UrlParser({urlSanitize: true}); // urlSanitize hides credentials from logs

// optional logger function
setLogger(console); // or log4js instance

// Define the fetch config loader instances and callback to build the request
const callbackToBuildRequest = async (): Promise<Request> => {
	return new Request('https://example.com/config.json');
};
const fetchEnv = new FetchConfigLoader(callbackToBuildRequest).getLoader;
// note: fetchEnv can overrider key we are looking for fetchEnv('SOME_OTHER_KEY');

// usually all variables are loaded same way, so you can define the loaders array just once.
const loaders = [reactEnv(), fetchEnv()];

// examples with different loaders and parsers
const valueFromEnv = getConfigVariable('TEST', [env()], stringParser, undefined, {showValue: true});
// valueFromEnv: Promise<string | undefined>
const valueFromReactEnv = getConfigVariable('TEST', [env(), reactEnv()], stringParser, undefined, {showValue: true});
// valueFromReactEnv: Promise<string | undefined>
const valueFromProcessEnv = getConfigVariable('TEST', [env(), reactEnv()], stringParser, undefined, {showValue: true});
// valueFromProcessEnv: Promise<string | undefined>
const valueFromFetch = getConfigVariable('API_SERVER', [reactEnv(), fetchEnv()], urlParser, undefined, {showValue: true});
// valueFromFetch: Promise<URL | undefined>
const valueFromSemicolonConfig = getConfigVariable('TEST', [env()], semicolonConfigParser, undefined, {showValue: true});
// valueFromSemicolonConfig: Promise<ObjectSchema | undefined>
const valueFromJsonConfig = getConfigVariable('TEST', [env()], jsonConfigParser, undefined, {showValue: true});
// valueFromJsonConfig: Promise<ObjectSchema | undefined>

usage example with ConfigMap

type TestEnv = {
	PORT: number;
	HOST: string;
	DEBUG: boolean;
	URL: URL;
};
const config = new ConfigMap<TestEnv>({
	DEBUG: {loaders: [env()], parser: booleanParser, defaultValue: false},
	HOST: {loaders: [env()], parser: stringParser, defaultValue: 'localhost'},
	PORT: {loaders: [env()], parser: integerParser, defaultValue: 3000},
	URL: {loaders: [env()], parser: new UrlParser({urlSanitize: true}), defaultValue: new URL('http://localhost:3000')},
});

console.log('port', await config.get('PORT'));

getConfigVariable arguments:

getConfigVariable<Output>(key: string, loaders: ConfigLoader[], parser: ConfigParser, defaultValue?: Output, options?: {showValue?: boolean}): Promise<Output | undefined>

If defaultValue is provided, the function will return the defaultValue if no value is found and type override is applied to function return type.

getConfigVariable<Output>(key: string, loaders: ConfigLoader[], parser: ConfigParser, defaultValue: Output, options?: {showValue?: boolean}): Promise<Output>

  • key: The key of the configuration value.
  • loaders: An array of IConfigLoader instances that can load the configuration value from different sources.
  • parser: An instance of IConfigParser that can parse and optionally validate expected format.
  • defaultValue: The default value to be returned if no value is found.
  • options: An object with an optional showValue boolean property. If true, logs also the value to logger.

Current loaders:

env(): IConfigLoader

A IConfigLoader instance that loads configuration values from the process.env.

reactEnv(): IConfigLoader

A IConfigLoader instance that loads configuration values from the process.env. with REACT_APP_* prefix.

new FetchConfigLoader(() => Promise<Response | RequestNotReadyMessage>, options?: FetchConfigLoaderOptions).getLoader: IConfigLoader

A IConfigLoader instance that loads configuration values from a remote source.

Note: getLoader is function generator which can override key we are looking for example, fetchEnv() with default key or fetchEnv('OVERRIDE_KEY')

  • requestCallback: A function that returns a Promise that resolves to a Response or RequestNotReadyMessage object if the request is not ready yet.(i.e. auth is needed and user is not logged in)

  • options.fetchClient (optional): A fetch client that can be used to fetch the remote configuration value.

  • options.isSilent (optional): No throw error if fetch fails. Returns empty object instead.

  • options.payload (optional): Only 'json' is supported. And default is 'json'.

  • options.validate (optional): An optional async function that can validate the fetched object to be valid Record<string, string>

  • options.cache (optional): An optional cache object that can be used to cache the fetched object IRequestCache

How to build a custom loader:

see IConfigLoader or extend abstract class ConfigLoader

Current parsers:

stringParser(value: string): IConfigParser<string>

A function that simply returns the given string value and validates this value to be a string.

integerParser(value: string): IConfigParser<number>

A function that simply returns the given string value as integer number and validates this value.

floatParser(value: string): IConfigParser<number>

A function that simply returns the given string value as float number and validates this value.

booleanParser(value: string): IConfigParser<boolean>

A function that parses the given string value to a boolean and validates this value to be a boolean. Allowed true values: ['true', '1', 'yes', 'y', 'on']. Allowed false values: ['false', '0', 'no', 'n', 'off'].

new UrlParser(options?: {urlSanitize?: boolean}): IConfigParser<URL>

A ConfigParser instance that parses the loaded value to a URL object.

  • options.urlSanitize: If true, removes credentials from logs.

new SemicolonConfigParser<Output>(options?: {validate?: ValidateCallback<Output>, keysToHide?: string[], keepCase = true}): IConfigParser<Output>

A SemicolonConfigParser instance that parses semi-colon separated key-value pairs to an object.

example input string: foo=bar;baz=qux output: {foo: 'bar', baz: 'qux'}

  • options.validate: An optional function that can validate the parsed object.
  • options.keysToHide: An optional array of keys that should be hidden from logs.
  • options.keepCase: If true, keeps the case of the keys, else converts first letter to lower case.

new JsonConfigParser<Output>(options?: {validate?: ValidateCallback<Output>, keysToHide?: string[], keepCase = true}): IConfigParser<Output>

A JsonConfigParser instance that parses JSON stringified object to an object.

example input string: '{"foo":"bar","baz":"qux"}' output: {foo: 'bar', baz: 'qux'}

  • options.validate: An optional function that can validate the parsed object.
  • options.keysToHide: An optional array of keys that should be hidden from logs.