Web Dev Basics

README Files, Wireframes, and Git Branches Explained

Github logo

What is the purpose of a README file?

A README file is usually the first file a user sees when they open a project,
and acts as a guide for anyone who wants to understand or contribute to the project.

A README file should include:

More about READMEs

What is the purpose of a Wireframe?

A wireframe is a simple layout of an app or website that shows the structure and key features. It's used early in design to plan how users will interact with the page before adding visuals and content.

The three main purposes of wireframes are:

  1. To keep the design focused on the user.
  2. To Help identify potential problems by making features and navigation clear.
  3. A low-cost way to test ideas because they are quick to create.

Wireframes can be created using paper and pencil, or with software like Figma, Sketch, or Adobe XD.

More about Wireframes

What is a branch in Git?

A branch in Git is a separate line of development in a project.
It’s created from another branch, usually the main one, so you can make changes without affecting the rest of the project. Each branch is like a copy of the project where you can work on different versions of a project at the same time.

More about Git Branches