Able Pro
React
React
  • ✨Overview
  • 🌱Pre-requisites
  • πŸš€Quick Start
  • πŸ“‚Folder Structure
  • πŸŒ€State Management
  • πŸ”’Authentication
    • Switch to Auth0
    • Switch to Firebase
    • Switch to AWS Cognito
  • πŸ›£οΈRouting
  • πŸ“‘Axios API Calls
  • 🌐Internationalization
  • 🎭Theme/Style Configuration
  • 🎨Color Presets
  • πŸ› οΈProject Configuration
  • πŸ“šHow to's
    • Login as First Page
    • Dashboard as First Page
    • Render Menu from the backend
    • Remove menu render from Backend
    • Remove Auth
  • 🀝Integration
    • Seed
    • Comparison
  • πŸ“¦Dependencies
  • πŸ–ŒοΈFigma
  • πŸ†˜Support
  • πŸ—“οΈRoadmap
  • πŸ“…Changelog
Powered by GitBook
On this page
  • Pre-requisites
  • Troubleshooting

Pre-requisites

Pre Requisites needed to run and build Able Pro

PreviousOverviewNextQuick Start

Last updated 2 months ago

You don’t need to install or configure tools like Webpack or Babel. They are configured and hidden so that you can focus on the code.

Pre-requisites

Able Pro is based on node and create-react script. Please check the following prerequisites before jumping on it.

Node is the primary prerequisite for Able Pro. Open your command terminal and check using the node -v command

c:\> node -v
v22.14.0

Package Manager - npm

c:\> npm -v
11.2.0

Package Manager - yarn

This project uses Yarn (via Corepack) for dependency management. The required Yarn version is specified in the package.json file and Corepack ensures the correct version is used automatically. There's no need to globally install Yarn.

If Corepack is not available: Corepack is included with Node.js version 16.10+ by default. If it's not installed or enabled:

  1. Ensure you’re using Node.js 16.10 or higher.

  2. Enable Corepack by running : corepack enable

  3. If Corepack is unavailable, update Node.js to a supported version.

After Corepack is enabled, simply run yarn commands, and the correct version will be handled for you automatically. For more information about Yarn and Corepack, refer to the documentation:

Troubleshooting

If you face the following error in your terminal, npm is not installed in your system.

c:\> npm -v
'yarn' is not recognized as an internal or external command,
operable program or batch file.
🌱
https://yarnpkg.com/getting-started/install
https://yarnpkg.com/corepack