Quick Comparison of Microservices and Monolith Node.js
Posted on December 27, 2019Before we start I want to point out this comparison of Monoliths and Microservices should only be evaluated if you are using Nodejs as backend of your application.The Good of Monolithic:Simple…
Read full postPrivate Members in Javascript Classes
Posted on January 12, 2019Unfortunately there is no native private properties in Javascript. But there is a few way to mimic that behavior.1. Scoped variablesDon't attach the new properties to the object, but keep them inside…
Read full post