Skip to content
This repository has been archived by the owner on Oct 5, 2024. It is now read-only.

azigler/mws-restaurant-reviews-final-project

 
 

Repository files navigation

Udacity Mobile Web Specialist Certification


Restaurant Reviews - FINAL PROJECT

☑️ Stage 1

☑️ Stage 2

☑️ Stage 3

Project Overview: Stage 3

In Stage One, I took a static design that lacked accessibility and converted the design to be responsive on different sized displays and accessible for screen reader use. I also add a service worker to begin the process of creating a seamless offline experience for users. In Stage Two, I added support for a database and improved the app's performance. In Stage Three, I provided functionality to add reviews and toggle favorites for various restaurants. These features are available offline and sync with the server when connectivity is available, producing a seamless, app-like experience.

Specification

This started as basic code for a restaurant reviews website. The code has a lot of issues. It was barely usable on a desktop browser, much less a mobile device. It also didn't include any standard accessibility features, and it didn't work offline at all. My job was to update the code to resolve these issues while still maintaining the included functionality.

How to View

  1. In this folder, start up a simple HTTP server to serve up the site files on your local computer. Python has some simple tools to do this, and you don't even need to know Python. For most people, it's already installed on your computer.

In a terminal, check the version of Python you have: python -V. If you have Python 2.x, spin up the server with python -m SimpleHTTPServer 8000 (or some other port, if port 8000 is already in use.) For Python 3.x, you can use python3 -m http.server 8000. If you don't have Python installed, navigate to Python's website to download and install the software.

  1. With your server running, visit the site: http://localhost:8000.

Note about ES6

Most of the code in this project has been written to the ES6 JavaScript specification for compatibility with modern web browsers.

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 96.5%
  • HTML 3.5%