Skip to content

Latest commit

 

History

History
66 lines (49 loc) · 3.52 KB

README.md

File metadata and controls

66 lines (49 loc) · 3.52 KB

Quality Assurance App

This is an end-to-end app with five different projects built mainly with JavaScript. The main goal for the app was to practice Test Driven Development. This project is part of the freeCodeCamp curriculum.

app is going to be off for a couple of days - To see the app live click here.

Services Backend

The backend was built with Nodejs and Expressjs following the Microservices architecture style, and all APIs follow the REST architectural style.
The choice for the database was MongoDB and the mongoose library to manage and store the data.

Services Tests

As said before, the main goal of this project was to practice TDD. So I used Chai.js to handle all the tests - unit and functional.

The frontend was built using only HTML, Bootstrap, and JavaScript.

A simple metric-imperial converter with only 3 basic units of measurement:

  • Length: we can convert Kilometers to Miles and vice-versa.
  • Mass: we can convert Kilograms to Pounds and vice-versa.
  • Volume: we can convert Liters to Gallons and vice-versa.
    More details

The idea behind this project was to create a tool to track issues on a project.
More details

A simple library project in which we can store books and keep track of comments on all books.
More details

This is a simple project, and as the name implies, this is a sudoku solver but can also be used to check if a number is valid to be used in a given coordinate - we use coordinates to track all squares in a puzzle.
More details

The game is divided into rows, columns, and areas. Starting from the fact that the game is a larger area of 9X9 - that gives us 81 squares to work with:

  • Each row is composed of 9 squares as well as each column and each area - in 3x3 format.
  • Each row receives a letter from A to I as a coordinate is the first line - top - the letter A and the last line - base - the letter I.
  • Each column receives as a coordinate a number from 1 to 9, the first column - left, column 1, and the last column - right - column 9.

Image explaining the sudoku grid coordinates

As the name implies this project work as a translator between british english and north american english.
More details

Conclusion

Overall this is not a big project, but I can say I did my best here to write some good code. I had to work with some conditions because this is part of the freeCodeCamp curriculum, and I had to pass all the tests they asked for.
While working on this project, I studied a lot, not only in terms of TDD, which was the main goal here but backend architecture and OOP concepts.

It was a really good experience.