Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Full Stack Web Development using the MERN stack and DEVOPS
Rating: 4.2 out of 5(91 ratings)
570 students

Full Stack Web Development using the MERN stack and DEVOPS

Learn all the technology needed to become a modern full stack web developer
Last updated 6/2021
English
English [Auto],

What you'll learn

  • NodeJS, Express, MongoDB, React, Docker and CI/CD

Course content

6 sections140 lectures34h 1m total length
  • Introduction24:09

    Learn full stack web development with the MERN stack and DevOps, building a production-grade database, APIs, and a containerized CI/CD pipeline on Google Cloud.

  • What is NodeJs12:04

    learn how Node.js provides an environment to run JavaScript outside the browser, verify npm, use the command line to create and run code, and plan an e-commerce app.

  • importing and exporting in JS17:44

    Learn how to import and export in JavaScript, using require and import, index files, and public versus private exports to organize modules across folders.

  • Why NodeJs and Express14:38

    Learn why we choose Node.js and Express for a MERN stack app, emphasizing single-threaded, non-blocking input and output for database access and APIs.

  • Introduction to Node Package Manager - npm18:15

    Explore npm as a dual tool: an online repository and a command line utility for managing node modules. Learn to initialize a project, install express, manage dependencies, and configure scripts.

  • Setting up express16:09

    Explore setting up Express as a minimal, flexible web framework, import it with require, initialize app, and define routes with a listen port to respond to browser requests.

  • Introduction to http requests16:04

    Learn how http requests flow between browser and node/express server using get, post, put/patch, and delete, and how responses with status codes like 200, 400, and 500 are handled.

  • Introduction to Middleware8:11

    Explore express middleware: a function that sits between request and response, with access to req, res, and next, and whose placement matters. It logs methods and enforces secure routes.

  • Set up Express server for app15:40

    Set up an express server for the ecommerce app by creating a GitHub repo, installing express, bcryptjs, and mongoose, configuring port 5000, and testing localhost to verify the server runs.

  • Set up MongoDB Database13:17

    Set up a cloud MongoDB database by creating a project and cluster on Google Cloud, whitelist your IP, and prepare a connection string with Mongoose.

  • set up connection to database15:35

    Set up a config folder with a keys module to store the MongoDB URI, then create a Mongoose-based connection that runs asynchronously and logs the connection status.

  • Set up express server9:24

    Set up an Express server by integrating the Express router, define routes for users and products, build restful APIs, export the router, and wire it into the server.

  • Introduction to restful APIs and Postman13:20

    Design restful api patterns with standard routes like api/users and api/users/{id}, and manage nested resources such as api/users/{id}/products. Test these endpoints with Postman to validate requests and responses.

Requirements

  • Basic knowledge of NodeJS and ExpressJS or and web frameworks

Description

Complete new course that will help you attain your dreams of becoming a full stack web developer. The course is designed out of my personal experience as a software developer and building several web applications. This course touches all the modern technologies need today, including but not limited to nodeJS, expressJS, reactJS, containers, continuous integration and  continuous delivery (CI/CD) and the google cloud platform.  In todays world, companies are project requirements as a web developer has drastically grown and will continue to grow as companies demand to sort the best amongst us all.

The primary goal of this course is to expose you to help software developers write good APIs using expressJS, test those APIs using postman and send anticipated data to a front end app while handling errors. We also looked at containerizing an express application and pushing the container to dockerhub using a  CI/CD offered by travis-ci. Like that wasn't enough, we also went on to talk about google cloud app engine and hosted our application there. As a bonus, we used google cloud storage to save our static images. On the front end, we used reactJS. We explored both functional and class based components. This was consciously done because a lot of companies still use class based components. We also used redux for state management.

While lasting over 30 hours, the course focused on key concepts that will help you get the right understanding.

Who this course is for:

  • Beginners