Skip to content

Getting started

FeatureBuddy provides an easy way to collect feedback from your users and build a better product.

Featurebuddy can be used in bare React Native applications as well as in Expo without ejecting or development client.

npm

Requirements

Quick start

Installing

Install Featurebuddy by running the following command in your terminal:

Terminal window
npm install @featurebuddy/react-native --save

Base usage

import { Features } from "@featurebuddy/react-native";
const apiKey = "your-api-key";
export const FeedbackScreen = () => {
return <Features apiKey={apiKey} />;
};