Project Structure

Structuring your project is a very main step. This lesson will explain its importance and some guidelines to keep in mind while performing this step.

We'll cover the following...

This is probably something you’d eventually do on your own once you’ve coded enough. When you’re scrolling through your file to find some code and have trouble finding it, it’s probably time to refactor and split the file up. In a non-trivial production web app, index.js, index.css, and index.html would be a painful way to structure your code.

There are a few schools of thoughts on how to do this. ...