Pre-requisites
Pre Requisites needed to run and build Able Pro
Last updated
Pre Requisites needed to run and build Able Pro
Last updated
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.
Able Pro is based on node
and next js
. 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
Package Manager - npm or yarn
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:
Ensure youβre using Node.js 16.10 or higher.
Enable Corepack by running : corepack enable
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:
If you face the following error in your terminal, it means npm is not installed in your system.
Please install it using this as it does not come with Node automatically.