Last active
June 10, 2019 20:46
-
-
Save asaschachar/5f6e3c341187d0a5336ab2f774932b60 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const optimizelyExpress = require('@optimizely/express'); | |
const optimizely = optimizelyExpress.initialize({ | |
sdkKey: '<Your_SDK_Key>', | |
datafileOptions: { | |
autoUpdate: true, // Indicates feature flags will be auto-updated based on UI changes | |
updateInterval: 1*1000 // 1 second in milliseconds | |
}, | |
logLevel: 'info', // Controls console logging. Can be 'debug', 'info', 'warn', or 'error' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment