@obelism/improve-sdk
v0.3.4
Published
Obelism Improve SDK
Downloads
44
Maintainers
Readme
Obelism Improve JS SDK
Install
npm i @obelism/improve-sdk
Class
The Improve JS SDK exposes two classes;
While similar they both work slightly different but are based on the same base. This base defines the constructor and three methods;
constructor
constructor({
organizationId: string
environment: 'develop' | 'staging' | 'production'
config?: Configuration
fetchTimeout?: number
}) => void
- organizationId - Unique identifier of your Organization, available from your dashboard
- environment - Application environment, can be one of three values
- config - (optional) Configuration file, this can be either fetched or provided on initialization
- fetchTimeout - (optional) When fetching the config after what amount of ms should it abort, default; 3000ms
fetchConfig
async fetchConfig() => void
Asynchronous function that fetches the config from Improve. Either provide the config on initialization or use this function to get started.
loadConfig
loadConfig = (config: ImproveConfiguration) => void
When loading an Improve config file from a different source you can either pass it directly into the class constructor or load it with the loadConfig
method.
generateVisitorId
generateVisitorId() => string
Method to get a unique identifier for a visitor. Recommended to save the generated visitor ID in a cookie with a max-age so that between visits you'll be able to keep serving the same version to this visitor.
getVisitorCookieName
getVisitorCookieName() => string
Helper method that gives you the name for the visitorID cookie name. If this name is used on the server, the client will be able to pick up and send events to Improve.
validateTestValue
validateTestValue = (testName: string, testValue: string) => boolean
Validate if a test name and test value are a valid combination. Requires a config to be loaded by either passing it in the constructor, using loadConfig or fetchConfig.
Server
The server class is setup that it can run on either serverless or serverfull environments. When running in a serverfull envrionment it will use memory to keep track of recent visitors decisions. However it is recommend to always store the made decision in a cookie in case the memory has been purged between visits of a visitor.
getFlagConfig
getFlagConfig(flagSlug: string) => {
id: string
name: string
audience: string
options: {
name: string
slug: string
value: string | undefined
split: number
}[]
} | undefined
Exposed for when needed but in most cases it's recommended to use the getFlagValue directly.
getTestConfig
getTestConfig(testSlug: string) => {
id: string
name: string
defaultValue: string
audience: string
allocation: number
options: {
name: string
slug: string
value: string | undefined
split: number
}[]
events: {
start: string
metrics: string[]
conversion: string
}
} | undefined
Exposed for when needed but in most cases it's recommended to use the getTestValue directly.
getFlagValue
getFlagValue = (flagSlug: string, visitorId: string, userAgent: string) =>
string | null
Based on the slug, visitorId and userAgent this method gives you back what version of the flag this visitor should get. If no config is loaded yet or no flag with the given slug is found it returns null
. When the userAgent of the visitor doesn't match the audience of the Flag it will always return the control value. If the visitor does match the audience it will receive the control or variation based on the randomization using the odds setup in the split.
getTestValue
getTestValue = (testSlug: string, visitorId: string, userAgent: string) =>
string | null
Based on the slug, visitorId and userAgent this method gives you back what version of the AB test this visitor should get. If no config is loaded yet or no AB test with the given slug is found it returns null
. When the userAgent of the visitor doesn't match the audience of the Test it will always return the control value. If the visitor does match the audience it will then check the allocation. If that's lower than 100% it will based on randomization check if this visitor should get the AB test. After that it will receive a random version of the test based on the randomization using the odds setup in the split.
Client
setupVisitor
setupVisitor(userAgent: string = window.navigator.userAgent) => string | null
Optional method to setup the visitor, if this is not called before using any of the other Client methods it will be called automatically. You only have to call this yourself if you want to make sure it gets the userAgent
from somewhere else.
This method will automatically save the visitorID to the class and cookie + parse the userAgent to be used in the postAnalytic.
getFlagValue
getFlagValue = (flagSlug: string) => string | null
Same as getFlagValue on the server class this generates and give the unique value. However on the client it also saves the value to a cookie that's stored for one month.
getTestValue
getTestValue = (testSlug: string) => string | null
Same as getTestValue on the server class this generates and give the unique value. However on the client it also saves the value to a cookie that's stored for one month.
setAnalyticsUrls
setAnalyticsUrls = (url: string) => void
Configure the analytics url to post message towards. Convenient in case add blockers block the direct post requests you can proxy them through your domain and pathname.
postAnalytic
postAnalytic = (testSlug: string, event: string, message?: string) =>
Promise<Response> | null
Posts an analytics message to Improve or the url configured with setAnalyticsUrls