Prerequisites
Prerequisites – Tools & Environment
Before you start using the Aquiry Admin Panel, make sure you have the following tools installed:
| Tool | Description | Link |
|---|---|---|
| Node.js | Version 22.x or higher is recommended | Download Node.js |
| npm | Comes with Node.js. Check with npm -v |
- |
| Yarn (Optional) | Alternative package manager. Install via npm install -g yarn |
- |
| Webpack | Bundler used in this project. Installed automatically via dependencies | - |
| Code Editor | VS Code or any preferred editor | - |
Check Your Environment :
Run the following commands to ensure your environment is ready:
Displays the currently installed Node.js version.
// Check Node.js version
node -v
Shows the version of npm installed on your system.
// Check npm version
npm -v
Checks the Yarn version if you are using Yarn as your package manager.
// Check Yarn version (if using Yarn)
yarn -v
Once these tools are installed, you are ready to move to the Installation section.