Home » Blog

Blog

How to install postgres on MacOS

How to install postgres on MacOS

If you’re working on a Node.js project and run into errors like ECONNREFUSED ::1:5432, chances are PostgreSQL isn’t running — or it isn’t even installed. Here’s a quick guide...

install npm on macos

How to Install npm on MacOS

Installing Node.js and npm (Node Package Manager) on your Mac is super simple. With these tools, you can manage Javascript packages, create powerful web applications, and dive...

Little Coding Things default cover

What does git add -a do?

If you’re reading this post, chances are you’re looking for a Git command that stages all changes before committing. To set the record straight: the correct command is git add -A. A quick...