Amplify JS is a library that primarily provides oauth flow + hosted UI. As a managed service it also provides build pipeline. It uses CloudFront in the background for hosting and distributing content over the net. You can also use Amplify JS without the hostedUI and manage your own CloudFront distributions. One of the important … Continue reading Angular 8, Amplify and CloudFront
Category: Javascript
Key Javascript concepts (and examples) that I have found important/foundational and which have helped me put things in perspective while studying JavaScript libraries vs. JavaScript frameworks Variable scope In JavaScript, objects and functions, are also variables. In JavaScript, scope is the set of variables, objects, and functions you have access to. JavaScript has function scope: … Continue reading Key Javascript concepts with examples