Skip to content

Instantly share code, notes, and snippets.

View micahwierenga's full-sized avatar
💭
Learning

Micah Wierenga micahwierenga

💭
Learning
View GitHub Profile

Project 4 - Assessment

GOAL

The goal of this assessment is to gauge your ability to develop a minimal ReactJS application that renders user-defined components, incorporating dynamic styling and reacts to some basic user interaction.

OVERALL APPLICATION REQUIREMENTS

Project 3 Assessment

GOAL

The goal of this project assessment is to gauge your ability to develop a minimal full-stack web application using the Django framework, including your ability to:

  • Create and configure a Django project
  • Create a "main" app and install it within the project

Project 2 Assessment

GOAL

The goal of this project assessment is to gauge your ability to develop a minimal Node.js web application using the Express framework.

OVERALL APPLICATION REQUIREMENTS

When a port is already in use

Sometimes, when running nodemon or node server.js, you'll trigger one of the following errors:

Error: listen EADDRINUSE: address already in use :::3000

or

Port 3000 is already in use

Project 1 Assessment

GOAL

The goal of this project assessment is to gauge your ability to develop a minimal front-end web application using HTML, CSS & JavaScript, including your ability to:

  • Write HTML that provides the application's overall structure and content.
  • Use CSS to provide styling.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>