Posted on July 13, 2016 by Evgeny Poberezkin Tags: talk, javascript, open-source This is a talk at FullStack London 2016. A very common situation in web development: you need to make multiple requests, often with some conditions and logic between calls, to get the required result. It can be achieved in three ways: Sending multiple requests to the server and implementing all the processing logic in the client. The advantage of this approach is that the server remains unchanged and the client c...