Aug 22, 2026

Use npm scripts to Simplify Daily Tasks

Developers often run commands like:

webpack --config webpack.config.js --watch

Instead of typing that every time, add this to your package.json:

"scripts": {
"dev": "webpack --config webpack.config.js --watch",
"start": "node server.js"
}

Now you just run:

npm run dev

or

npm start

This not only saves time but also keeps your project setup standardized — super helpful when collaborating or switching between multiple projects.

OTHER POSTS

Learn Faster with Browser DevTools Tricks

Your browser is more powerful than you think. Chrome/Edge/Firefox DevTools can save you tons of time debugging and experimenting directly in the browser.

Read more →

Fix "Email in this signature doesn't match the committer email" on GitHub

Pushed a signed GPG commit only to get a warning that the signature is unverified because of an email mismatch? Here is how to sync your GPG identity with Git.

Read more →

How to Set Up Verified GPG Commit Signing on GitHub

Tired of seeing the "Unverified" badge on your GitHub commits? Setting up a GPG key signs your commits cryptographically, proving to your team (and future employers) that the code actually came from you.

Read more →

Save Time with Emmet in VS Code

Writing HTML feels slow? Emmet abbreviations in VS Code can generate entire structures in seconds.

Read more →