A Simple React.JS extension mechanism by Romain Manni-Bucau, 2021-06-02

React.JS is a great SPA library but extending SPA is always a challenge. Let see one proposal to do it easily.

Setup an OAuth2 PKCE flow for a React.JS application by Romain Manni-Bucau, 2021-04-20

OAuth2 PKCE flow is intended for web application. It makes the authentication flow more secure and does not require client secret (which must stay secret so not hit the client). Let see how to set it up in a React.JS application.

Angular 10: configure your routes by Romain Manni-Bucau, 2020-10-27

Angular 10 enables to configure routes and therefore to have generic components reading their configurable from the enabled route, keeping them generic and reusable.

Angular 10: how to create/update routes programmatically by Romain Manni-Bucau, 2020-10-20

Creating Angular Router routes from a backend description is tempting but has some challenges, let see how to solve them!

Reuse Webpack plugins without a webpack build by Romain Manni-Bucau, 2020-04-04

Webpack plugins have a lot of goodness but when your ecosystem is not webpack based, it can be complicated to reuse it. Let see how to do it with an example.