Start typing to search...
No results for ""
Before you start developing with KiviCare Extended Version, make sure your system meets the required software and environment setup listed below.
Version: 18.0.0 or higher
Node.js is needed to run the development server and build the React-based frontend.
Install:
Verify installation:
node --version
# Expected: v18.x.x or higher
npm is included with Node.js. You can also use bun for faster package installation.
Check npm:
npm --version
# Expected: 9.x.x or higher
Install bun (optional):
curl -fsSL https://bun.sh/install | bash
bun --version
Version: 8.0 or higher
PHP is required for running the WordPress backend.
Verify:
php --version
Install PHP:
sudo apt install php8.0brew install php@8.0Version: 2.0 or higher
Composer manages PHP dependencies.
Install:
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer
composer --version
Version: 6.0 or higher
You need an active WordPress installation (local or live).
Recommended local development tools:
Visual Studio Code (Recommended)
Install extensions:
PHPStorm (Professional option)
Advanced PHP + React support with debugging tools.
Install these browser extensions:
Install Git:
sudo apt install git # Linux
brew install git # macOS
Windows users can download from git-scm.com.
Verify:
git --version
Run this command to confirm everything is installed correctly:
echo "=== System Check ==="
echo "Node: $(node --version)"
echo "npm: $(npm --version)"
echo "PHP: $(php --version | head -n 1)"
echo "Composer: $(composer --version | head -n 1)"
echo "Git: $(git --version)"
Database Management
API Testing
Performance Testing
Start typing to search...
No results for ""