NextJS SDK
The NextJS SDK sits around the Javascript Server SDK and gives React specific handlers.
Install
Generator
The main export exposes a generator to create the middleware handler using the passed configuration.
improveSdk
The ImproveServerSDK to be used. Required to be loaded with a configuration in place before handlig requests.
serverABtests
Not every AB test from the config needs to be used be used for the middleware handler. For each one that does need to be used it needs to be passed in this argument. Each entry in this list resembles one server side AB test.
MiddlewareHandler
The generated handler based on your configuration. Receives a NextRequest
and rewrites based on one of three reasons:
- Search parameters matching a valid test with option configuration. Recommended for development or testing purposes, shouldn't be used for real users since it will impact the distribution.
- AB test cookie value which matches a valid test for name with option for value, the
improveMiddlewareHandler
will both read and write this cookie - Visitor ID cookie, for long running servers the
ImproveServerSDK
will also be able to store the saved decision for a visitor in memory and use that to serve the same result. For serverless or edge this won't work for this purpose.