Limiting Concurrent Subscriptions With Rx

This post was prompted by a question on the RxHttp project. I thought that there may be others looking for a similar solution. Sometimes when using Rx you may wish to limit the number of concurrent subscriptions. Take the following example (RxPHP and RxHttp): Observable::fromArray( [ ‘http://www.example.com/’, // … lots more urls here ‘http://www.example.com/’, ] … Continued

Using JSON Web Token (JWT) for Thruway Authentication

JSON Web Tokens (JWT) are a great way to easily add authentication to your Thruway router. It allows you to generate authentication credentials from any supported environment. It is great for integrating your new Thruway router into your existing traditional web application. In this example, I am going to create a module that lives inside … Continued