Skip to content

tryabby/abby

Repository files navigation

Abby Banner

About Abby

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.

Getting Started

TL;DR:

git clone [email protected]:tryabby/abby.git
pnpm i
pnpm build:packages
pnpm db:start
cp apps/web/.env.example apps/web/.env
pnpm db:migrate
pnpm dev
  1. Open the Application:

    • Go to http://localhost:3000 in your browser.
  2. Sign Up:

    • Select "Continue with Email" and enter your email.
  3. Email Verification:

    • Open http://localhost:8025 in a new tab for MailHog.
    • Find and open the email from your application.
  4. Complete Registration:

    • Click the one-time link in the email to verify and finish account setup.

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.

What's inside?

This turborepo uses pnpm as a package manager. It includes the following packages/apps:

Apps and Packages

  • docs: a Next.js with Nextra
  • web: another Next.js app using the T3 Stack
  • core: The Abby core JavaScript SDK which all other JS SDKs are based on
  • react: The Abby React SDK
  • next: The Abby Next.js SDK
  • angular: The Abby Angular SDK
  • svelte: The Abby Svelte SDK

Each package/app is 100% TypeScript.

Utilities

This turborepo has some additional tools already setup for you:

Useful Links

Learn more about the power of Turborepo: