npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nexperiment

v1.1.0

Published

Lightweight A/B testing solution for React and Next.js

Downloads

24

Readme

Nexperiment - A/B testing for React and Next.js

Nexperiment is a lightweight A/B testing solution for React and Next.js. It has a straightforward API and leaves data collection and analysis to the user.

Once a website is configured with Nexperiment, it will randomly assign a version of each A/B test value to each user and store them in the local storage. This way, the user will always see the same version of each A/B test value, even if they refresh the page.

Description

Each A/B test item consists of a key and an object with the A and B versions. When a key is requested, Nexperiment will randomly return the A or B version of the item (based on the content of the local storage) and a unique ID.

This ID can be used to dynamically set the ID of the HTML element that is being tested. The element can be the same as the one with the test content, but it is not a requirement.

Installation

NPM

npm install nexperiment

Yarn

yarn add nexperiment

PNPM

pnpm add nexperiment

Usage

Add the ABTestProvider to one of your layout.tsx files. Provide the items prop with an object of your A/B tests.

Optionally, you can provide a prefix prop to the ABTestProvider that will be used as a prefix for the generated IDs.

Parameters

  • items (required): An object with the A/B tests.
import { TestItems, ABTestProvider } from 'nexperiment';

const items: TestItems = {
  motto: {
    A: "Awesome motto for an awesome site",
    B: "A functional motto describing what the site does",
  },
  cta: {
    distribution: 0.5,
    A: "Let's go",
    B: "Read more",
  },
};

Setting the distribution property to a value between 0 and 1 will set the distribution of the A/B test. The default value is 0.5. In this case, 50% of the users will see the A version, and 50% will see the B version.

  • prefix (optional): A string that will be used as a prefix for the generated IDs. The default value is ab-test-.
export default function Layout({ children }: { children: React.ReactNode }) {
  return (
    <ABTestProvider items={items} prefix="custom-prefix-">
      {children}
    </ABTestProvider>
  );
}

Accessing a stored value

Use the useABTest hook to get the A/B test value and ID. Make sure to use the useABTest hook inside a component that is a child of the ABTestProvider.

export default function HeroSection() {
  const abStore = useABTest();
  const cta = abStore.getItem('cta');

  return (
    <div>
      <button id={cta.id}>{cta.value}</button>
    </div>
  );
}

The above example tests the text of a button. By setting the provided ID to the button, the developer can differentiate between the A and B versions of the text. Considering that the default prefix is used, in this case, the ID of version A will be ab-test-cta-A, and the ID of version B will be ab-test-cta-B.

Collecting data

Data collection and analysis are up to the user. However, the generated IDs are designed to be easily usable with analytics tools.

Simply set up a custom event in your preferred analytics tool and listen for click events on elements with IDs that start with the prefix provided to the ABTestProvider.

Author

Richard Kovacs