Serverless cursor-based pagination API on AWS
Cursor-based pagination on AWS

In this port, I’ll be guiding you on how to build an API with AWS Lambda and API Gateway to paginate data using the Serverless framework.

Technologies stack

  • AWS Lambda for running code without provisioning or managing servers. You can utilize free-tier to run your service with zero cost.
  • AWS API Gateway to create, publish, and secure Rest APIs.
  • Serverless framework to build and deploy your backend services on the cloud, you can build and deploy a serverless function in minutes.

Read More

CRUD app with Angular and NGRX

In this guide, we just focus on how to build a CRUD application with Angular (version 8) that has already installed the Ngrx, not on setting up an Angular application or installing the Ngrx library. You can follow the following guides to do those task:

If you have no idea what is Ngrx, I recommend you to read this to explore more about it. And if you have a basic knowledge of Redux, I think you will be easy to approach this library.

In this part, we will learn how to define actions, reducer, selectors and build a page to display all items that are selected from the store using the Ngrx.

Read More