vwo-node-sdk allows you to A/B Test your application at server-side and other capabilities like feature rollout, feature testing, etc.
This repository provides a basic demo of how server-side works with VWO NodeJs SDK.
- Node 6.10.0 onwards
Refer VWO Official Server-side Documentation
- Install dependencies
yarn install
- For NodeJs, update your app configuration inside
config.js
// Only if settings-file is fetched from browser, otherwise pass settings-file from server to client
const accountId = '';
const sdkKey = '';
// AB Test
const abCampaignKey = '';
const abCampaigngoalIdentifier = '';
// Feature Rollout
const featureRolloutCampaignKey = '';
const featureTestCampaignKey = '';
const featureTestCampaigngoalIdentifier = '';
const featureVariable = '';
// Push API i.e. Custom Dimension for post-segmentation
const tagKey = '';
const tagValue = '';
// Pre-segmentation variables
const customVariables = {};
- For JavaScript i.e. browser, update your app configuration inside
public/js/helper.js
// Only if settings-file is fetched from browser, otherwise pass settings-file from server to client
const accountId = '';
const sdkKey = '';
// AB Test
const abCampaignKey = '';
const abCampaigngoalIdentifier = '';
// Feature Rollout
const featureRolloutCampaignKey = '';
const featureTestCampaignKey = '';
const featureTestCampaigngoalIdentifier = '';
const featureVariable = '';
// Push API i.e. Custom Dimension for post-segmentation
const tagKey = '';
const tagValue = '';
// Pre-segmentation variables
const customVariables = {};
- Run application
yarn dev-app
Copyright 2019 Wingify Software Pvt. Ltd.