Posts

Showing posts from June, 2020

Let’s Go Serverless!! — Part II (Building Serverless Mobile Application)

Image
Every day new technologies come into play. “Serverless” was one of them. In the perspective of a web developer and web application owner, going Serverless is a cost-effective method. But still, there are pros and cons of going Serverless. So we have to think in the context of the application that we are managing and decide whether to go Serverless or not. “Serverless” has been a hype for some time now. Some months back I wrote a Medium article on Serverless and today I thought to publish another part of it. If you want to know more about “Serverless” please read my previous article from  here . It will give you quite some understanding of what “Serverless” actually is. So in this article, I will be creating a mobile application which is based on Serverless. Mobile applications have two parts similar to web applications. Back End Front End Front end application resides on the mobile application. It’s the one that we install from the  Google Play store  or  Apple Appst...

Creating REST API Application with NodeJS

Image
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. ...