Skip to content

A collection of projects completed as a part of the The Complete 2023 Web Development Bootcamp from "The App Brewery"

License

Notifications You must be signed in to change notification settings

Husain0007/WebDev-Projects

Repository files navigation

The Complete 2023 Web Development Bootcamp

This repository is a collection of projects completed during the course of the Web Development Bootcamp Course prepared by The App Brewery.

Projects Completed

jQuery based Simon Game

Image
This WebApp utilized jQuery 3.3.1 (with Googles' CDN) to actualize the "Simon" Board Game.


Bootstrap-CSS-Project

Image
This project utilizes Bootstrap CSS to visualize a dynamically resizable homepage to a Pet friend finder called "TinDog".


PostgreSQL Projects

  • Install dependencies:
    npm i
  • Execute Javascript source file:
    nodemon index.js

Image
This is a Web App with Create, Read, Update, & Delete (CRUD) functionalities that is fully-persistant on a PostgreSQL Relational Database Management System. The relevant database was hosted locally using pgAdmin.
Image This Web-App cross checks user input against a persistant Database against a Country-Capital Table. The number of correct user responses in a row are collected and displayed on the front-end. The game resets after a single incorrect response.
Image
This Web-App cross checks user input against a persistant Database against a Country-Flag Table. The number of correct user responses in a row are collected and displayed on the front-end. The game resets after a single incorrect response.


API Projects

Image
Created a Web-App that suggests different activities based on type and number of individuals involved by connecting to the Bored API using Axios, a Promise-based HTTP Client used to make Server-side API requests.
Image
Created a RESTful Web-App that can handle all the necessary HTTP requests, ie; GET, POST, PUT, PATCH , DELETE by connecting to the Secrets API via bearer token-based authentication (AUTH2.0).
Image
Created a Web-App that uses the /random endpoint of the Secrets API to display randomly selected secrets submitted by the APIs users. This is application uses Axios to make concise requests and Express.js for the backend.