Developer Utility

Command Library

Laravel, PHP, Python, Node.js, and React project setup commands with clean step-by-step copy-ready workflow.

Reset

Laravel

Featured

Laravel Project Multiple Port Run

Any Version Laravel Project Multiple Port Run

Laravel ডেভেলপারদের জন্য সবচেয়ে common সমস্যা হলো—একই PC তে একাধিক project একসাথে run করা। Default ভাবে Laravel php artisan serve দিলে http://127.0.0.1:8000 এ run হয়। কিন্তু যদি আপনি একাধিক project একসাথে চালাতে চান, তাহলে port change করতে হবে।

Step 1
php artisan serve
Step 2
php artisan serve --port=8001
Step 3
php artisan serve --port=8000
php artisan serve --port=8001
php artisan serve --port=8002
php artisan serve --port=8003
Version: Laravel 10 + Tags: Larvel

Laravel

Featured

Laravel 11 Project Setup (Windows/XAMPP)

Create a new Laravel project, configure env, and run migrations.

Practical command flow for a clean Laravel local setup.

Step 1
composer create-project laravel/laravel myapp
Step 2
cd myapp
Step 3
copy .env.example .env
Version: Laravel 11, PHP 8.2+ Tags: laravel,composer,php,setup,migration

CodeIgniter

Featured

CodeIgniter 4 Install and First Run

Install CI4, prepare env, migrate schema, and start server.

Practical starter command set for CodeIgniter 4.

Step 1
composer create-project codeigniter4/appstarter ci4app
Step 2
cd ci4app
Step 3
copy env .env
Version: CodeIgniter 4.7+ Tags: codeigniter4,php,migration,seeder

Python

Python Virtual Environment Quick Start

Create venv, activate, install packages, and lock dependencies.

Reliable Python dependency isolation workflow.

Step 1
python -m venv .venv
Step 2
.\.venv\Scripts\activate
Step 3
python -m pip install --upgrade pip
Version: Python 3.10+ Tags: python,venv,pip

Node.js

Node.js API Starter (Express)

Initialize npm, install Express stack, and run dev server.

Fast setup for a Node.js backend API.

Step 1
mkdir api-app && cd api-app
Step 2
npm init -y
Step 3
npm install express cors dotenv
Version: Node 18+ Tags: nodejs,npm,express,api

React

React App Setup with Vite

Create React app with Vite and run production-ready build workflow.

Modern React setup with fast local dev and optimized build.

Step 1
npm create vite@latest my-react-app -- --template react
Step 2
cd my-react-app
Step 3
npm install
Version: React 18+, Vite 5+ Tags: react,vite,frontend,npm