Advanced
Command Line Interface (CLI) Usage
Beyond just initializing a project and building datafiles, Featurevisor CLI can be used for a few more purposes.
Installation#
Use npx to initialize a project first:
$ mkdir my-featurevisor-project && cd my-featurevisor-project$ npx @featurevisor/cli initIf you wish to initialize a specific example as available in the monorepo:
$ npx @featurevisor/cli init --example=jsonAfter you have installed the dependencies in the project:
$ npm installYou can access the Featurevisor CLI from inside the project via:
$ npx featurevisorFeaturevisor finds featurevisor.config.js by walking up from the current directory. You can run commands from nested directories inside the project without changing back to its root.
To operate on another project, pass either form of the root directory option:
$ npx featurevisor build --rootDirectoryPath=../my-other-project$ npx featurevisor build --root-directory-path ../my-other-projectUse npx featurevisor <command> --help or npx featurevisor help <command> to see the available options for a command. Help remains available outside a project and when a project configuration cannot be loaded.
Built in commands reject unknown options and unexpected positional arguments. This helps catch spelling mistakes before a command does any work. Custom plugins can opt into the same validation by declaring their options.
Learn more in Quick start.
Linting#
Check if the definition files have any syntax or structural errors:
$ npx featurevisor lintUse --json for machine-readable output, and --json --pretty for prettified JSON output.
Learn more in Linting.
Building datafiles#
Generate JSON files, one per target and optional environment combination:
$ npx featurevisor buildPass --target=<target> one or more times to build only those targets. Without it, all targets are built.
In a project with sets, you can build a single set by passing --set:
$ npx featurevisor build --set=storefrontLearn more in Building datafiles.
Testing#
Test your features and segments:
$ npx featurevisor testPass --target=<target> one or more times to build only those target datafiles and run untargeted assertions plus assertions for the selected targets. Segment tests are not filtered.
In a project with sets, you can test a single set by passing --set:
$ npx featurevisor test --set=storefrontLearn more in Testing.
Promote between sets#
In a project with sets, you can preview and apply promotions from one set to another.
Preview what would be copied:
$ npx featurevisor promote --from=dev --to=stagingApply the promotion to write destination files:
$ npx featurevisor promote --from=dev --to=staging --applyLearn more in Promotions.
Generate static catalog#
Build the catalog:
$ npx featurevisor catalog exportServe the built catalog (defaults to port 3000):
$ npx featurevisor catalog serveServe it in a specific port:
$ npx featurevisor catalog serve -p 3000Learn more in Catalog.
Generate code#
Generate TypeScript code from feature definitions:
$ npx featurevisor generate-code --language typescript --out-dir ./srcSee output in ./src directory. Pass repeatable --tag=<tag> or --target=<target> options to generate the union of features needed by several tags or targets.
Learn more in code generation page.
Find duplicate segments#
It is possible to end up with multiple segments having same conditions in larger projects. This is not a problem per se, but we should be aware of it.
We can find these duplicates early on by running:
$ npx featurevisor find-duplicate-segmentsIf we want to know the names of authors who worked on the duplicate segments, we can pass --authors:
$ npx featurevisor find-duplicate-segments --authorsFind usage#
Learn where/if certain segments and attributes are used in.
Choose exactly one feature, segment, attribute, or unused entity query per command. Combining several queries is rejected so no selection is silently ignored.
For each of the find-usage commands below, you can optionally pass --authors to find who worked on the affected entities.
Segment usage#
$ npx featurevisor find-usage --segment=my_segmentAttribute usage#
$ npx featurevisor find-usage --attribute=my_attributeUnused segments#
$ npx featurevisor find-usage --unusedSegmentsUnused attributes#
$ npx featurevisor find-usage --unusedAttributesFeature usage#
$ npx featurevisor find-usage --feature=my_featureBenchmarking#
You can measure how fast or slow your SDK evaluations are for particular features.
The --n option is used to specify the number of iterations to run the benchmark for.
--n and the optional --inflate value must be positive integers. The --context value must be a JSON object. Invalid values are reported before the benchmark begins. --variation and --variable cannot be combined in one benchmark.
Pass --target=<target> one or more times to benchmark the same evaluation independently against each selected target datafile. Without it, the complete in-memory datafile is used.
The output includes both the total loop duration and individual evaluation timings:
Total duration: how long all benchmark iterations took togetherMinimum duration: fastest individual evaluationAverage duration: average individual evaluationMaximum duration: slowest individual evaluation
Use the individual evaluation timings when comparing SDK performance. The maximum value can include runtime pauses like garbage collection or process scheduling.
Feature#
To benchmark evaluating a feature itself if it is enabled or disabled via SDK's .isEnabled() method against provided context:
$ npx featurevisor benchmark \ --environment=production \ --feature=my_feature \ --context='{"userId": "123"}' \ --n=1000Variation#
To benchmark evaluating a feature's variation via SDKs's .getVariation() method:
$ npx featurevisor benchmark \ --environment=production \ --feature=my_feature \ --variation \ --context='{"userId": "123"}' \ --n=1000Variable#
To benchmark evaluating a feature's variable via SDKs's .getVariable() method:
$ npx featurevisor benchmark \ --environment=production \ --feature=my_feature \ --variable=my_variable_key \ --context='{"userId": "123"}' \ --n=1000Configuration#
To view the project configuration:
$ npx featurevisor configPrinting configuration as JSON:
$ npx featurevisor config --json --prettyEvaluate#
To learn why certain values (like feature and its variation or variables) are evaluated as they are against provided context:
$ npx featurevisor evaluate \ --environment=production \ --feature=my_feature \ --context='{"userId": "123", "country": "nl"}'This will show you full evaluation details helping you debug better in case of any confusion.
Pass --target=<target> one or more times to evaluate independently against the exact datafiles for those targets. With repeated targets and --json, the result is an array containing each target and its evaluations. A single target keeps the regular evaluation object shape.
It is similar to diagnostics in SDKs with debug level. But here instead, we are doing it at CLI directly in our Featurevisor project without having to involve our application(s).
If you wish to print the evaluation details in plain JSON, you can pass --json at the end:
$ npx featurevisor evaluate \ --environment=production \ --feature=my_feature \ --context='{"userId": "123", "country": "nl"}' \ --json \ --prettyThe --pretty flag is optional.
To print further logs in a more verbose way, you can pass --verbose:
$ npx featurevisor evaluate \ --environment=production \ --feature=my_feature \ --context='{"userId": "123", "country": "nl"}' \ --verboseList#
Choose exactly one entity type for every list command. Featurevisor reports an error if none or more than one are selected. Archived features, segments, and attributes are hidden by default. Pass --archived=true to list archived definitions, or --archived=false to request active definitions explicitly.
List datafiles#
To list generated datafiles in the configured datafiles/ directory:
$ npx featurevisor list --datafilesThe result is a three-column table of paths relative to datafiles/, their uncompressed sizes, and their gzip-compressed sizes, excluding the REVISION file and hidden files. Size values are right-aligned and always show two decimal places; one-character B suffixes are padded to align with kB and mB. There is an empty line between directories. Directories beginning with dev appear first and those beginning with prod appear last. Sizes use colored B, kB, and mB suffixes in terminal output. With --json, each item has path, byte size, and byte gzipSize fields in the same order.
| Option | Description |
|---|---|
--json | print as JSON |
--pretty | pretty JSON |
List features#
To list all features in the project:
$ npx featurevisor list --featuresAdvanced search options:
| Option | Description |
|---|---|
--archived=<true or false> | by archived status |
--description=<pattern> | by description pattern |
--disabledIn=<environment> | disabled in an environment |
--enabledIn=<environment> | enabled in an environment |
--json | print as JSON |
--keyPattern=<pattern> | by key pattern |
--promotable=<true or false> | by promotion eligibility |
--tag=<tag> | by tag |
--target=<target> | selected by one or more repeatable targets |
--variable=<variableKey> | containing specific variable key |
--variation=<variationValue> | containing specific variation key |
--with-tests | with test specs |
--with-variables | with variables |
--with-variations | with variations |
--without-tests | without any test specs |
--without-variables | without any variables |
--without-variations | without any variations |
List segments#
To list all segments in the project:
$ npx featurevisor list --segmentsAdvanced search options:
| Option | Description |
|---|---|
--archived=<true or false> | by archived status |
--description=<pattern> | by description pattern |
--json | print as JSON |
--keyPattern=<pattern> | by key pattern |
--pretty | pretty JSON |
--promotable=<true or false> | by promotion eligibility |
--with-tests | with test specs |
--without-tests | without any test specs |
List attributes#
To list all attributes in the project:
$ npx featurevisor list --attributesAdvanced search options:
| Option | Description |
|---|---|
--archived=<true or false> | by archived status |
--description=<pattern> | by description pattern |
--json | print as JSON |
--keyPattern=<pattern> | by key pattern |
--pretty | pretty JSON |
--promotable=<true or false> | by promotion eligibility |
List groups#
To list exclusion groups:
$ npx featurevisor list --groupsGroups support --description, --keyPattern, --promotable, --json, and --pretty filters and output options.
List schemas#
To list reusable schemas:
$ npx featurevisor list --schemasSchemas support --description, --keyPattern, --promotable, --json, and --pretty filters and output options.
List targets#
To list targets:
$ npx featurevisor list --targetsTargets support --description, --keyPattern, --promotable, --json, and --pretty filters and output options.
List tests#
To list all tests specs in the project:
$ npx featurevisor list --testsAdvanced search options:
| Option | Description |
|---|---|
--applyMatrix | apply matrix for assertions |
--assertionPattern=<pattern> | by assertion's description pattern |
--entityType=<type> | only feature or segment test specs |
--json | print as JSON |
--keyPattern=<pattern> | by key pattern of feature or segment being tested |
--pretty | pretty JSON |
--promotable=<true or false> | by promotion eligibility of the test spec |
Assess distribution#
To check if the gradual rollout of a feature and the weight distribution of its variations (if any exists) are going to work as expected in a real world application with real traffic against provided context, we can imitate that by running:
$ npx featurevisor assess-distribution \ --environment=production \ --feature=my_feature \ --context='{"country": "nl"}' \ --populateUuid=userId \ --n=1000The --n option controls the number of iterations to run, and the --populateUuid option is used to simulate different users in each iteration in this particular case.
The iteration count must be a positive integer, and --context must contain a JSON object.
Further details about all the options:
--environment: the environment name--feature: the feature key--context: the common context object in stringified form--populateUuid: attribute key that should be populated with a new UUID, and merged with provided context.- You can pass multiple attributes in your command:
--populateUuid=userId --populateUuid=deviceId
- You can pass multiple attributes in your command:
--n: the number of iterations to run the assessment for- The higher the number, the more accurate the distribution will be
--target: assess the exact target datafile; repeat it to assess several targets independently--verbose: print the merged context for better debugging
Everything is happening locally in memory without modifying any content anywhere. This command exists only to add to our confidence if questions arise about how effective traffic distribution in Featurevisor is.
Info#
Shows counts for attributes, segments, features, variables, groups, schemas, targets, test specs, and expanded test assertions in the project:
$ npx featurevisor infoPass --target=<target> one or more times to show counts and datafile sizes for each selected target in each environment. Without it, info shows the project-wide entity counts.
Error output#
When a command fails, Featurevisor prints the message to standard error and exits with a non-zero code.
If --json is passed, the failure is printed as a structured object instead, which is easier to handle in scripts and CI:
{ "error": { "code": "unknown_command", "message": "Unknown command \"frobnicate\".", "details": { "command": "frobnicate" } }}The code property is stable and meant to be matched against, while message is written for humans. The details object carries additional context when there is any, and is an empty object otherwise. Add --pretty to indent the output.
Codes you are most likely to encounter are invalid_cli_arguments for a misspelled option or an unexpected positional argument, unknown_command for a command that does not exist, project_not_found when no featurevisor.config.js could be found, and invalid_project_configuration when the configuration file could not be loaded.
Version#
Get the current version number of Featurevisor CLI, and its relevant packages:
$ npx featurevisor versionOr do:
$ npx featurevisor --versionOr do:
$ npx featurevisor -v
