#Run and Manage All development servers & commands with one single artisan command

4 messages · Page 1 of 1 (latest)

dry sandal
#

Hello everyone! I'm excited to share my open-source Laravel package: Laravel Dev!

After years of repeatedly running the same Artisan commands and juggling multiple terminal windows, I decided to solve this once and for all.

Introducing Laravel Dev - a Laravel package that launches and manages all your development servers and commands in separate terminal windows with a single Artisan command.

✨ Key Features:
-Launch all dev servers & commands with php artisan dev
-Interactive menu to start/stop/restart individual or all processes
-Customizable terminal colors for better visual organization
-Dynamic command generation at runtime
-Cross-platform support (Windows, macOS, Linux)
💡 Perfect for developers who:
-Run multiple services (Laravel server, Vite, Queue workers, etc.)
-Want to eliminate repetitive terminal management
-Need better organization of development processes

🔗 Check it out: https://github.com/MaherRemita/laravel-dev

GitHub

A Laravel package that allows you to launch and manage all your development servers and commands in separate terminal windows with a single Artisan command. - MaherRemita/laravel-dev

brisk garden
#

How does this differ from composer run dev

dry sandal
# brisk garden How does this differ from `composer run dev`

it runs every command in a separate terminal window + the ability to customize the background & text colors
composer run dev runs all commands and displays their logs in a single terminal which makes it hard to read + i doesn't has the ability to restart or stop commands, you have to do it manually

brisk garden
#

Neat!