Create React App (CRACO)
A user-friendly guide to quickly integrate the Para Modal into a Create React App (CRA) setup using CRACO.
This guide will walk you through the process of integrating the Para Modal into a Create React App (CRA) project that uses CRACO, ensuring a seamless way to manage user authentication and wallets.
If you haven’t already created your React app with CRA, follow the official CRA docs to scaffold a new project. Once you’ve set up CRA, you can install and configure CRACO: CRACO docs.
Prerequisites
To use Para, you need an API key. This key authenticates your requests to Para services and is essential for integration.
Don’t have an API key yet? Request access to the Developer Portal to create API keys, manage billing, teams, and more.
Installing Dependencies
First, install the Para React SDK using your preferred package manager:
Setting Up Polyfills in CRACO
Para relies on certain Node.js modules that are not available in the browser by default (e.g., crypto
, buffer
,
stream
). You’ll need to configure polyfills via CRACO’s config to ensure those modules work properly.
Install the necessary polyfill packages before updating your configuration:
Then, modify your craco.config.js
:
This configuration ensures that the Para SDK can properly utilize the necessary Node.js modules in your CRA environment.
You can adjust the polyfill configuration based on your specific needs and the requirements of your project. You’re welcome to use different polyfill packages or modify the fallback settings as needed.
Setting Up the Para SDK
Now that you’ve installed the necessary dependencies, let’s set up the Para SDK in your CRA project. This involves creating a client instance.
Creating a Para Client Instance
You can create the Para client instance in a dedicated file, such as clients/para.tsx
, or as part of your state
management logic. Below is a basic example:
This step initializes the Para SDK with your API key and the chosen environment. If successful, you should see the Para
instance logged in your console (if you choose to console.log
it).
Para offers two hosted environments: Environment.BETA
(alias Environment.DEVELOPMENT
) for testing, and
Environment.PROD
(alias Environment.PRODUCTION
) for live use. Select the environment that matches your current
development phase.
Integrating the Para Modal
Next, integrate the Para Modal into your React component by importing the ParaModal
component from the Para SDK,
adding a button to trigger the modal, and managing the modal’s state.
This creates a button that, when clicked, opens the Para Modal for user authentication. The Para Modal handles all aspects of user authentication and wallet management.
Beta Testing Credentials In the BETA
Environment, you can use any email ending in @test.getpara.com
(like
dev@test.getpara.com) or US phone numbers (+1) in the format (area code)-555-xxxx
(like (425)-555-1234). Any OTP
code will work for verification with these test credentials. These credentials are for beta testing only. You can
delete test users anytime in the beta developer console to free up user slots.
Customizing the Para Modal
To provide the best experience for your users, you can customize the appearance and behavior of the Para Modal to match your application’s branding.
When rendering the ParaModal component, you can pass props to customize its appearance and behavior:
For a full list of available ParaModalProps
, refer to the customization guide:
Examples
For practical implementation of the Para SDK in CRACO applications, explore our example repository. This repository contains real-world examples to help you get started.
Next Steps
After integrating Para, you can explore other features and integrations to enhance your Para experience. Here are some resources to help you get started:
Ecosystems
Learn how to use Para with popular Web3 clients and wallet connectors. We’ll cover integration with key libraries for EVM, Solana, and Cosmos ecosystems.
If you’re ready to go live with your Para integration, make sure to review our go-live checklist:
Troubleshooting
If you encounter issues during the integration or usage of the Para Modal in a CRACO-based app, here are some common problems and their solutions:
For a more comprehensive list of solutions, visit our troubleshooting guide:
Integration Support
If you’re experiencing issues that aren’t resolved by our troubleshooting resources, please contact our team for assistance. To help us resolve your issue quickly, please include the following information in your request:
1
A detailed description of the problem you’re encountering.
2
Any relevant error messages or logs.
3
Steps to reproduce the issue.
4
Details about your system or environment (e.g., device, operating system, software version).
Providing this information will enable our team to address your concerns more efficiently.