Official ConfigCat SDK to help you access your feature flags from a Node.js application.
npm install configcat-node| :mega: Important notice |
|-------------------------|
| This SDK is superseded by the new, unified ConfigCat SDK for JavaScript.
This legacy SDK is in maintenance mode now, it will receive only critical security patches until official support ends on August 31, 2026.
We recommend migrating to the new SDK as described here. |
bash
npm i configcat-node
`
`js
const configcat = require("configcat-node");
`
$3
!SDK-KEY
$3
`js
const configCatClient = configcat.getClient("#YOUR-SDK-KEY#");
`
> You can acquire singleton client instances for your SDK keys using the getClient(" factory function.
(However, please keep in mind that subsequent calls to getClient() with the same SDK Key return a shared client instance, which was set up by the first call.)
$3
The async/await way:
`js
const value = await configCatClient.getValueAsync('isMyAwesomeFeatureEnabled', false);
if (value) {
do_the_new_thing();
} else {
do_the_old_thing();
}
`
or the Promise way:
`js
configCatClient.getValueAsync('isMyAwesomeFeatureEnabled', false)
.then((value) => {
if (value) {
do_the_new_thing();
} else {
do_the_old_thing();
}
});
`
Getting user specific setting values with Targeting
Using this feature, you will be able to get different setting values for different users in your application by passing a User Object to getValueAsync().
Read more about Targeting here.
`js
const userObject = new configcat.User("#USER-IDENTIFIER#");
const value = await configCatClient.getValueAsync('isMyAwesomeFeatureEnabled', false, userObject);
if (value) {
do_the_new_thing();
} else {
do_the_old_thing();
}
`
Sample/Demo app
* Sample Console application
* Sample Console application with ECMAScript module system
* Sample application using Express and Docker
* Sample on how to get real time updates on feature flag changes
Polling Modes
The ConfigCat SDK supports 3 different polling mechanisms to acquire the setting values from ConfigCat. After latest setting values are downloaded, they are stored in the internal cache then all requests are served from there. Read more about Polling Modes and how to use them at ConfigCat Docs.
Need help?
https://configcat.com/support
Contributing
Contributions are welcome. For more info please read the Contribution Guideline.
About ConfigCat
- Official ConfigCat SDK's for other platforms
- Documentation
- Blog
Troubleshooting
$3
You might run into errors caused by the wrong version of Node.js. To make sure you are using the recommended Node.js version follow these steps.
1. Have nvm (Node Version Manager - https://github.com/nvm-sh/nvm ) installed:
1. Run nvm install. This will install the compatible version of Node.js.
1. Run nvm use`. This will use the compatible version of Node.js.