Most modern applications are real time, not in the traditional sense, but in the sense that they don't need the page to reload for them to be updated. The most common way to implement this is through WebSockets. In this recipe, we will leverage Feathers and Socket.io to build a cat database.Â
Creating a real-time app with Feathers
Getting ready
There is no prerequisite for this recipe, but you can complete the Createing a REST client (and server!)Â recipe before starting this one if you want to have more context.
How to do it...
To complete this recipe, you'll need the Feathers&apos...