Chapter 6. Reactive Systems and REST-Based Systems
Reactive systems are the ones that can propagate changes based on the data flow. In this chapter, we are going to dive deep into MeteorJS' reactivity. It is necessary to understand Trackers in the first place, which is the reason for MeteorJS' reactivity. We will also learn about the Tracker library with simple examples.
Apart from reactivity, we can build REST-based systems using MeteorJS. It is common that data-based applications want to expose data to a third-party application via REST APIs. We will learn about what are the options available to implement RESTAPIs.
Modern applications can involve volumes of data. It is wise to use pagination to handle volumes of data. We will discuss the problems that we face and how to handle the problems while using pagination in MeteorJS applications.
In this chapter, we are going to cover the following topics:
- MeteorJS' reactivity
- REST-based systems using MeteorJS
- Handling volumes...