@automattic/calypso-config
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-alpha.0 • Public • Published

client/config

This module reads config data from window.configData (passed from the Node.js server in the HTML response) and initializes a config object that is used to read these values.

You can read more about how to use config in the config documentation.

Feature Flags API

The config files contain a features object that can be used to determine whether to enable a feature for certain environments. This allows us to merge in-progress features without launching them to production.

config.isEnabled( key )

Is a feature enabled?

import config from '@automattic/calypso-config';

if ( config.isEnabled( 'myFeature' ) ) {
	// do something only when myFeature is enabled
}

config.enable( key )

Enable a feature.

import config from '@automattic/calypso-config';

config.enable( 'myFeature' );

config.disable( key )

Disable a feature.

import config from '@automattic/calypso-config';

config.disable( 'myFeature' );

The key should always be a literal string not a variable so that down the road we can process the compiled scripts and remove code for disabled features in production.

When Calypso is running in development mode or in the stage environment, you can specify a ?flags= query argument or a flags cookie to modify feature flags for each full page load.

Query argument examples:

  • ?flags=flag1: Enable feature flag1.
  • ?flags=-flag2: Disable feature flag2.
  • ?flags=+flag1,-flag2: Enable feature flag1 and disable feature flag2.

You can use the same syntax in a cookie or via session storage

Cookies:

  • document.cookie = 'flags=+flag1,-flag2;max-age=1209600;path=/';: Enable feature flag1 and disable feature flag2.
  • document.cookie = 'flags= ; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;';: Reset flags cookie to config values.

Session Storage:

  • window.sessionStorage.setItem( 'flags', 'flag1,-flag2' );: Enable feature flag1 and disable feature flag2.
  • window.sessionStorage.removeItem( 'flags' );: Reset flags session item to config values.

Note: the flags query argument, cookie, and sessionStorage won't work for feature flags used by Node.js server. For this case, you can use the ENABLE_FEATURES and/or DISABLE_FEATURES environment variables instead.

Testing for calypso.live environment

We often need to enable or disable certain features not only based on the Calypso environment (development, production, staging, horizon, ...) but also when Calypso runs in the calypso.live testing environment. The config module exports a helper function isCalypsoLive that returns true if Calypso is running on the *.calypso.live origin.

import { isCalypsoLive } from '@automattic/calypso-config';

if ( isCalypsoLive() ) {
	/* ... */
}

Readme

Keywords

none

Package Sidebar

Install

npm i @automattic/calypso-config

Weekly Downloads

5,288

Version

1.0.0-alpha.0

License

GPL-2.0-or-later

Unpacked Size

95.4 kB

Total Files

19

Last publish

Collaborators

  • macbre
  • yuliyan
  • mjangda
  • matticbot
  • a8c
  • blowery
  • ehg_
  • sgomes
  • tyxla
  • saroshaga
  • nejclovrencic
  • sirbrillig
  • chriszarate
  • robersongomes
  • johngodley
  • jeherve
  • daledupreez-a8c
  • t2dw4t
  • luismulinari
  • andrea-sdl
  • elazzabi
  • fmfernandes
  • sirreal
  • wwa
  • chihsuan
  • manzoorwanijk
  • msurdi-a8c
  • newspack
  • dsmartg
  • kthai15
  • bgrgicak
  • robertsreberski_a8c
  • artpi
  • gmjuhasz
  • kat3samsin
  • brunobasto
  • dhenridev
  • micbosia8c
  • mrmurphy
  • wpvip-bot
  • etobiesen
  • alshakero
  • arthur791004
  • dilirity
  • mattwest-a8c
  • mehmoodak
  • natalia.vidal
  • chriskmnds