In this section, readers will get an overview of the Twitter clone being developed. The requirements, design, and implementation details will be discussed in brief.
Getting started
Beginning with the Tweety architecture
The application architecture for Tweety will have a RESTful API backend and a model-view-viewmodel (MVVM) frontend. MVVM is a design pattern used to enable two-way data binding between the view and the model so that one changes when the other does. Angular is a very famous framework that conforms to the MVVM design pattern, which allows highly responsive frontend applications that efficiently update when data from the server changes or a user interacts with the application. Apart from this, Angular provides...