This a simple HTTP proxy server to handle Now.sh deployments AB tests.
Deploy it with
now sergiodxa/now-abNow will prompt you to define 2 environment variables TEST_A and TEST_B with urls (including the protocol).
When an user access this server is going to proxy the request to one of those (doing a simple random to define which one) and will set a cookie called now_ab with the user test case (TEST_A or TEST_B).
You can also add more test variables to support more test cases just adding -e TEST_C=$URL when deploying, the server will use any variable starting with TEST_ to get possible test cases.