React Native SDK

Official React Native library for the Taxu API for iOS and Android apps.

v1.0.0iOSAndroid

Installation

npm install @taxu/react-native

Quick Start

import { TaxuClient } from '@taxu/react-native';

const client = new TaxuClient({
  apiKey: 'your_api_key',
});

// Calculate tax refund
const refund = await client.refunds.estimate({
  income: 75000,
  filingStatus: 'single',
  deductions: ['standard']
});

Key Features

  • Full TypeScript support with type definitions
  • Works with both iOS and Android platforms
  • Async/await API for all operations
  • Automatic error handling and retries
  • Support for React Native 0.64+

Platform-Specific Setup

iOS

cd ios && pod install

Android

No additional setup required.

Need Help?

Check out our comprehensive documentation or reach out to our support team.