Date Archives

September 2020

AWS Lambda with Node.js: Serverless Computing Simplified

Are you curious about AWS Lambda, the powerful service for building highly scalable, event-driven applications? It’s no surprise that terms like ‘serverless,’ ‘function-as-a-service,’ and ‘AWS Lambda’ might leave you feeling a bit puzzled. But don’t worry, you’ve come to the right place! This article is your guide to understanding AWS Lambda serverless technology, and it…

Read More

Let’s Know How To Structure Large Flask Applications Step by Step

Creating and managing Large Flask Applications involves various methods and conventions. Many frameworks provide tools for automating and simplifying this task, but they all emphasize structuring the code base by logically distributing it across files and folders. Flask, a minimalistic web application development framework, offers a solution through its ‘blueprints.’ In this article, we’ll explore…

Read More

Efficient Unit Testing with Jest for Gatsby, TypeScript, and React Testing Library

The task to set up Jest and React Testing library for TDD using Gatsby is an easy one.Its tricky as i planned to use Typescripts in my test. Firstly , i installed jest, babel-jest and babel-preset-gatsby ensuring the presence of babel preset(s) which can be used internally for Gatsby site. npm install –save-dev jest babel-jest babel-preset-gatsby identity-obj-proxy tslint-react…

Read More