Building REST APIs in Express
Learn how to build REST APIs in Express using basic CRUD operations.
We'll cover the following...
REST stands for representational state transfer. It’s the most-used architectural style that builds web server APIs. Express, meanwhile, is one of the most popular web libraries or frameworks that build REST APIs.
CRUD operations
CRUD (Create, Read, Update, and D ...