Building your app from a Github repository, with monitored commits and continuous deployment. Sounds fun? We can do this using Azure Static web apps. This was announced at Microsoft Build this year 2020. And, it seems to be making the task of building and hosting our web applications seamless. heard it right! Hosting web apps,… Continue reading Angular web app on Azure Static web apps
Month: June 2020
Counter with Redux-saga
Have been exploring redux-saga lately and thought I will put down here a simple counter example using Redux saga with TypeScript to manage the counter state across the application. We will start with with a simple create-react-app with a Counter Component. In the first part of the article, we will see how to modify the… Continue reading Counter with Redux-saga
Implement an e-commerce application
Create relevant components and modules Perform routing in your app Prepare services to interact with data Manage the state of the application We’ll create a cart example where we would implement all the concepts like services, routing, state management using services etc. It would basically look like: Set up development environment Install node and npm… Continue reading Implement an e-commerce application