Discover millions of ebooks, audiobooks, and so much more with a free trial

Only $11.99/month after trial. Cancel anytime.

Shrova Mall 3 - The Backend: A-to-Z e-commerce full-stack application
Shrova Mall 3 - The Backend: A-to-Z e-commerce full-stack application
Shrova Mall 3 - The Backend: A-to-Z e-commerce full-stack application
Ebook66 pages18 minutes

Shrova Mall 3 - The Backend: A-to-Z e-commerce full-stack application

Rating: 0 out of 5 stars

()

Read preview

About this ebook

Welcome to the third book in the Shrova Mall series. In this book I will explain the backend project.
I will use the NestJs framework for the backend project.
NestJS is a progressive Node.js framework for building efficient, reliable and scalable server-side applications.


I will build the application from scratch, create the modules, connect to the database, connect to GitHub and deploy it online.


First, you need to install NestJS on your computer.
Are you ready? Let's go!

LanguageEnglish
Release dateMay 10, 2024
Shrova Mall 3 - The Backend: A-to-Z e-commerce full-stack application

Read more from Abdelfattah Ragab

Related to Shrova Mall 3 - The Backend

Titles in the series (4)

View More

Related ebooks

Internet & Web For You

View More

Related articles

Reviews for Shrova Mall 3 - The Backend

Rating: 0 out of 5 stars
0 ratings

0 ratings0 reviews

What did you think?

Tap to rate

Review must be at least 10 words

    Book preview

    Shrova Mall 3 - The Backend - Abdelfattah Ragab

    Introduction

    Welcome to the third book of the Shrova Mall series, in this book I will explain the backend project.

    I will be using the NestJs framework for the backend project.

    NestJS is a progressive Node.js framework for building efficient, reliable and scalable server-side applications. It has everything you need.

    Install it first and start building our application.

    Are you ready? Let's go!

    Development Steps

    The first step is to install NestJS on your computer.

    Create a new Nest project called shrova-be.

    Create a new GitHub repository called shrova-be.

    Connect your local project to the online GitHub repository.

    To deploy our application, we'll create a new web service on render.com

    Add environment variables to the web service on render.com and we are done with the backend development.

    Our backend server is now ready to serve the frontend application.

    Now we can move on to the final step: developing the frontend application.

    These were the development steps we need to take to get our application up and running.

    Throughout the book, we'll see how to achieve each step in detail.

    So, let's get started.

    Install NestJS

    If this is the first time to work with NestJS, you need to install the following applications

    Download and install NodeJS

    Download and install Visual Studio Code

    Install NestJS CLI

    Open the terminal and execute the command

    npm install -g @nestjs/cli

    Create new project

    Create the nestjs project shrova-be on your local machine as follows, execute the command

    nest new shrova-be

    Enjoying the preview?
    Page 1 of 1