RESTful API design with Node.js | HackerNoon

Too Long; Didn’t Read

This tutorial will walk you through the basics of API design with Node.js and Express. It will teach you how to set up the backbone of a REST API and how to structure your code in a logical manner. The whole demo is on GitHub if you wish to see it in its entirety, it’s linked at the bottom of the article. I’d love if you would follow along and code alongside me, as the tutorial progresses. We’ll be using Express for this application as it is the de facto standard for Node applications today. We’ll be using MongoDB, a NOSQL database, as we do not have the need for a relational database.

People Mentioned

Mention ThumbnailMention Thumbnail

Companies Mentioned

Mention ThumbnailMention ThumbnailMention ThumbnailMention Thumbnail

Coin Mentioned

Mention ThumbnailMention Thumbnail

This tutorial will walk you through the basics of API design with Node.js and Express. It will teach you how to set up the backbone of a REST API and how to structure your code in a logical manner. The whole demo is on GitHub if you wish to see it in its entirety, it’s linked at the bottom of the article. I’d love if you would follow along and code alongside me, as the tutorial progresses. We’ll be using Express for this application as it is the de facto standard for Node applications today. We’ll be using MongoDB, a NOSQL database, as we do not have the need for a relational database.