Abby is a open source feature management and A/B testing platform. It is designed to be easy to use and easy to integrate into your existing applications. It aims to improve the developer experience by providing a simple and statically typed API for feature management and A/B testing.
Besides its official SDKS it also offers a friendly and easy to understand Dashboard for the non-developers in your team.
Abby focuses on privacy. This means it won't track any personalized user data and uses no marketing cookies. You can self host it or use the hosted version available at tryabby.com.
TL;DR:
git clone git@github.com:tryabby/abby.git
pnpm i
pnpm build:packages
pnpm db:start
cp apps/web/.env.example apps/web/.env
pnpm db:migrate
pnpm dev
Open the Application:
http://localhost:3000
in your browser.Sign Up:
Email Verification:
http://localhost:8025
in a new tab for MailHog.Complete Registration:
To create an account, you should choose the "Continue with Email" option. The docker-compose.yml includes a MailHog instance at localhost:8025
, which intercepts the email, so you can get the one-time link from there.
This turborepo uses pnpm as a package manager. It includes the following packages/apps:
docs
: a Next.js with Nextraweb
: another Next.js app using the T3 Stackcore
: The Abby core JavaScript SDK which all other JS SDKs are based onreact
: The Abby React SDKnext
: The Abby Next.js SDKangular
: The Abby Angular SDKsvelte
: The Abby Svelte SDKEach package/app is 100% TypeScript.
This turborepo has some additional tools already setup for you:
Learn more about the power of Turborepo: