# Getting started URL: /docs/react-native/getting-started *** title: Getting started description: Installation and base usage ---------------------------------------- import { Tabs, Tab } from 'fumadocs-ui/components/tabs'; 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](https://www.npmjs.com/package/@featurebuddy/react-native) ## Requirements * [FeatureBuddy](https://app.featurebuddy.com) Account * FeatureBuddy API Key, available in [Settings > API Key](https://app.featurebuddy.com) ## Quick start ### Installation Install FeatureBuddy by running one of the following commands in your terminal: ```npm npm i @featurebuddy/react-native --save ``` ### Usage You can easily render a component on the screen or in a modal. ```jsx import { Features } from "@featurebuddy/react-native"; const apiKey = "your-api-key"; export const FeedbackScreen = () => { return ; }; ```