Creating REST API Application with NodeJS
I have been creating a NodeJS application recently and I spent a lot of time finding how to create a back-end REST API application. So I thought like it’s better if I could document my findings so that it will be useful for some other people as well. For my project, I used the ExpressJS framework as the NodeJS framework and used MySQL as the database type. Also, I have used Sequelize as the ORM. So I will discuss the Following in this article. Creating NodeJS app skeleton using ExpressJS Using Sequelize to create database and Model Classes Creating the REST API Setting up the Project First, you need to have NodeJs installed on your computer. ...