FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
🚀 Stop Typing Long Terminal Commands. Use Aliases Instead
How-ToWeb Development

🚀 Stop Typing Long Terminal Commands. Use Aliases Instead

via Dev.to WebdevAditya0mo ago

As developers, we optimize APIs, databases, and smart contracts. But we rarely optimize our own workflow. I realized I was typing the same commands every single day: npm run dev git add . git commit -m "message" git push docker compose up --build npx hardhat test forge build It seems small. But friction compounds. So I reduced it. 🧠 What Are Shell Aliases? Aliases are shortcuts you define in your shell ( bash or zsh ) that map short commands to longer ones. Instead of typing: npm run dev You type: nd Same result. Less friction. 🛠 Step 1: Open Your Shell Config If you’re using: Zsh (Mac / Linux default nowadays) nano ~/.zshrc Bash nano ~/.bashrc ✍ Step 2: Add Aliases Here are some practical ones for Full-Stack + Web3 developers: # 📦 NPM alias nd = "npm run dev" alias nb = "npm run build" alias ni = "npm install" # 🌿 Git alias gs = "git status" alias ga = "git add ." alias gc = "git commit -m" alias gp = "git push" alias gpl = "git pull" alias gcb = "git checkout -b" alias gl = "git log

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
14 views

Related Articles

Week 6 — No New Problems. Just Me and Everything I Already Learned.
How-To

Week 6 — No New Problems. Just Me and Everything I Already Learned.

Medium Programming • 3d ago

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)
How-To

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)

Medium Programming • 3d ago

Android Remote Compose:讓 Android UI 不用發版也能更新
How-To

Android Remote Compose:讓 Android UI 不用發版也能更新

Medium Programming • 3d ago

How-To

Learn Something Old Every Day, Part XVIII: How Does FPU Detection Work?

Lobsters • 3d ago

“Learn to Code” Is Dead… Learn to Think Instead
How-To

“Learn to Code” Is Dead… Learn to Think Instead

Medium Programming • 3d ago

Discover More Articles