DevCommands

Your command-line reference for various frameworks

Welcome to DevCommands

Browse through categories to find useful command-line references for your development workflow. Use the "Copy Feature" to copy multiple commands at once.

Laravel

php
framework
web
php artisan serve

Start the Laravel development server

php artisan cache:clear

Clear the application cache

php artisan migrate

Run database migrations

php artisan storage:link

Create a symbolic link from public/storage to storage/app/public

composer install

Install PHP dependencies

composer dump-autoload

Regenerate the Composer autoloader

Next.js

javascript
react
framework
npm run dev

Start the Next.js development server

npm run build

Build the application for production

npm run start

Start the production server

npm run lint

Run ESLint to check code quality

WordPress

php
cms
web
wp core update

Update WordPress to the latest version

wp plugin update --all

Update all WordPress plugins

wp db export

Export the WordPress database

Node.js

javascript
runtime
server
npm install

Install Node.js dependencies

node server.js

Start a Node.js server

nodemon server.js

Start a Node.js server with auto-reload

npm test

Run the test suite