How to kill a process running on a port
August 30, 2020 · 1 min read
TLDR How to kill a process running on a port.
What is a CNAME record
August 26, 2020 · 1 min read
CNAME stands for Canoncial Name. A CNAME record is an entry in the Domain Name System (DNS), that specifies that one domains is an alias of another canonical domain name.
TLDR JavaScript module formats
August 19, 2020 · 1 min read
Since JavaScript didn't use to have a core feature in the language that supports modules, a few different module formats have emerged.
How to drop all collections in a MongoDB database using Mongoose
August 19, 2020 · 1 min read
Drop all collections with Mongoose.
What is the difference between an Argument and a Paramter
July 10, 2020 · 1 min read
Argument and parameter are often used interchangeably, find out the difference.
REST - Representational State Transfer
July 8, 2020 · 3 min read
Usually, when people speak about REST APIs they mean a web API that uses the HTTP request methods (POST, GET, PUT, DELETE, etc.) to modify or access the state of a resource.