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 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-native-appexa

v1.1.0

Published

`react-native-appexa` is an npm package that provides the basic infrastructure and tools for React Native project. By using this package, you can speed up the setup process of your React Native project and make your development process more efficient.

Downloads

22

Readme

react-native-appexa

react-native-appexa is an npm package that provides the basic infrastructure and tools for React Native project. By using this package, you can speed up the setup process of your React Native project and make your development process more efficient.

For a full list of documentation, see the Documentation Index.

Features

  • Fast Setup: Quick and easy setup for your React Native project.
  • Customizable Structure: Easily customizable structure according to your project's needs.
  • Performance Optimizations: Various optimizations to improve your project's performance.
  • API Configuration: Easy API management and configuration with appexa.json.
  • VSCode IntelliSense Integration: Enhanced code completion and debugging features with the appexa VSCode extension.

Installation

npm

To add the react-native-appexa package to your project with npm, you can use the following command:

npm install react-native-appexa

appexa.json

After installation, create a file named appexa.json in the root folder of your project. This file is used for managing API requests and has the following features:

  • API Endpoint Configuration: The type (get, post, etc.), URL, and additional headers if necessary can be specified for each API operation.
  • Centralized Management: All API requests are managed from a single file, making project maintenance and updates easier.
  • Flexibility: You can customize the API configuration by making changes to the appexa.json file as needed.

For more details on configuring requests, see the Request Module documentation.

Example appexa.json configuration:

{
  "request": {
    "baseUrl": "https://api.example.com/",
    "createItem": {
      "type": "post",
      "url": "item/createItem"
    }
  }
}

VSCode Plugin

You can enable IntelliSense features by installing the appexa extension in your VSCode IDE. This extension works in harmony with your appexa.json file, facilitating your coding and debugging processes.

Usage

Provider

You need to wrap your application with the Appexa provider. To do this, modify your root component file (e.g., App.js) as follows:

For more details, see the Provider Component documentation.

// App.js
import React from 'react';
import Appexa from 'react-native-appexa';
import storeModules from './src/storeModules'; // Assuming your modules are in src
import appexaConfig from './appexa.json';
import AppNavigator from './src/navigation'; // Your app's navigator/main component

const App = () => {
  return (
    <Appexa
      storeModules={storeModules}
      config={appexaConfig}
      isDevelopment={__DEV__} // Use React Native's global __DEV__ variable
    >
      <AppNavigator />
    </Appexa>
  );
};

export default App;

Store Modules

You can manage your Redux Store processes with react-native-appexa. Create a folder named storeModules inside your application's src directory and add an index.jsx file to this folder. This file will bring together your Redux store modules:

export default {};

For a detailed guide on creating store modules, see the Auth Module Example. For simplifying CRUD operations, refer to the Using the CRUD Class documentation.

Request

The request module is designed to simplify the management of API requests. For details, you can refer to the Request Module documentation.

Other Features

react-native-appexa also includes other utilities:

License

react-native-appexa is licensed under the MIT License.