A/BBY 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.
A/BBY focuses on privacy. This means it won't track any user data and uses no marketing cookies. It also doesn't use any third party services. You can self host it or use the hosted version available at tryabby.com.
TL;DR:
git clone [email protected]:tryabby/abby.git
pnpm i
pnpm db:start
pnpm db:migrate
cp apps/web/.env.example apps/web/.env
pnpm dev
Now open your browser at http://localhost:3000 and have fun :)
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 A/BBY core JavaScript SDK which all other JS SDKs are based onreact
: The A/BBY React SDKnext
: The A/BBY Next.js SDKangular
: The A/BBY Angular SDKsvelte
: The A/BBY Svelte SDK
Each package/app is 100% TypeScript.
This turborepo has some additional tools already setup for you:
- TypeScript for static type checking
- ESLint for code linting
- Prettier for code formatting
Learn more about the power of Turborepo: