JavaScript Asynchronous Design Book?

Can anyone recommend a really complicated book on asynchronous programming in JavaScript? Something that assumes the reader already knows how to do something in JavaScript, but is looking for an in-depth analysis of finding the best way. Something not related to performance tweaks and hacks, but a serious book on architecture.

What I'm looking for will go into such things as asynchronous queued actions, unify error handling between regular synchronous exceptions and onError asynchronous callbacks, bind asynchronous calls, while providing cleanup operations needed for the initial call, etc. . And the question is how best to manage the state, when 10 Ajax requests work simultaneously, maybe the book itself.

Outside of JavaScript books, any recommendations for your favorite book on such patterns in general?

+3
source share
3 answers

I also recommend Ajax Patterns and Best Practices along with other recommended books. RESTful Web Services also describes how to introduce a free connection between the client and server; as well as the reasons why all requests to the server should be stateless.

+1
source

Ajax Design Patterns is a pretty good book. It's a bit outdated, and the javascript code style is not to my liking, but the methods and design templates themselves are still very relevant.

0
source

Ajax. O'Reilly : -. , Ajax/ .

0
source

Source: https://habr.com/ru/post/1773565/


All Articles