FeatureBuddy logo
FeatureBuddy
React Native

Getting started

Installation and base usage

FeatureBuddy works with both bare React Native applications and Expo projects without requiring ejection or a development client.

It's built with TypeScript and has no external dependencies.

npm

Requirements

Quick start

Installation

Install FeatureBuddy by running one of the following commands in your terminal:

npm i @featurebuddy/react-native --save

Usage

You can easily render a component on the screen or in a modal.

import { Features } from "@featurebuddy/react-native";

const apiKey = "your-api-key";

export const FeedbackScreen = () => {
  return <Features apiKey={apiKey} />;
};