MYMitchell Yueninmitchellyuen.hashnode.dev·Nov 23, 2022 · 2 min readImplement AWS Cognito with Express JS(TS)Link to Source Code GitHub Repository Let's begin by creating a starter Node.js/Express.js Starter project > mkdir CognitoProject > cd CognitoProject > npm init -y The above will create a basic Node.js Application. Now Let's download and install so...00
MYMitchell Yueninmitchellyuen.hashnode.dev·Nov 20, 2022 · 2 min readSOLID Principle In TypescriptS: Single Responsibility Principle A class or function should have one and the only reason to change. Each class should do one thing & do it well. Instead of thinking that we should split code because it would look cleaner in a single file, we split ...00