
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
list-feature-flags
Advanced tools
`list-feature-flags` is a command-line utility that searches through JavaScript and TypeScript files in a directory for feature flags and experiment keys, and outputs a sorted, unique list of them.
list-feature-flags
is a command-line utility that searches through JavaScript and TypeScript files in a directory for feature flags and experiment keys, and outputs a sorted, unique list of them.
You can use this utility via npx
without installing it:
npx list-feature-flags
Or, install it globally using npm
:
npm install -g list-feature-flags
To use the utility, navigate to the directory containing your JavaScript or TypeScript files and run:
npx list-feature-flags --mode=featureFlags
Or, if you installed it globally:
list-feature-flags --mode=experiments
The utility allows two modes:
featureFlags
: This mode will search for any words matching the regular expressions \bf_\w*\b
and \bF\w*Feature\b
, then applies a series of transformations to convert CamelCase to snake_case, lowercasing the string, removing the trailing _feature
part and finally ensuring the flag starts with _f
.
experiments
: This mode will search for any words matching the regular expressions \be_\w*\b
and \bE\w*Experiment\b
, then applies a similar series of transformations as in featureFlags
mode, but removes the trailing _experiment
part and ensures the flag starts with _e
.
In both modes, files in test
, __mocks__
, and node_modules
directories are excluded from the search. The output lists are sorted and duplicates are removed.
If the --mode
flag is not provided, the utility defaults to featureFlags
.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
ISC
FAQs
`list-feature-flags` is a command-line utility that searches through JavaScript and TypeScript files in a directory for feature flags and experiment keys, and outputs a sorted, unique list of them.
We found that list-feature-flags demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.