Tag: api

How to Analyze Java Class at Runtime Using Java Reflection API?

Reading Time: 10 minutes What is Reflection API? Reflection API is one of the best features in Java. A programmer can use this API to write any logic for classes that will be generated in the future. In simple words, it refers to the ability of a running Java program to look at itself and understand its own internal […]

How to Read and Write In Google Spreadsheet Using Python and Sheety API?

Reading Time: 9 minutes Tired of manual data entry in Google Spreadsheets? Discover a simple and efficient way to automate your data handling using Python and Sheety API. In this blog, we’ll demonstrate step-by-step the process of reading and writing data in Google Sheets, empowering you to effortlessly manage your data with the power of Python. Say goodbye to […]

Use SurrealDB to Persist Data with Rocket REST API

Reading Time: 8 minutes Databases are essential in web development for organizing data in various forms and shapes (both structured and unstructured). Their ultimate goal is for the stored data to be easily retrievable, updated, queried, and generally administered via a graphical user interface (GUI), dashboard, or even command line interface (CLI). We can use database management systems to […]

How to Manage State in a React Application Using Redux?

Reading Time: 6 minutes The rise of JavaScript frameworks such as React opened a new possibility in the world of Single Page Applications (SPAs). It became a lot easier to develop reusable components and create robust applications with JavaScript. However, as the applications grew, there arose a complexity – state management. That’s why we’ll discuss about how to Manage […]

How to Configure CORS in Node.js With Express?

Reading Time: 9 minutes Internet browsers typically deny access to unknown websites from your application programming interfaces and services. Doing this allows your server to share its resources only with clients that are on the same domain as yours and nobody else. However, there are times when you would like to relax this guard or would want to exercise […]

How to connect to MongoDB using Mongoose and MongoDB Atlas in Node.js?

Reading Time: 10 minutes MongoDB is one of the most popular No-SQL databases in the developer community today. Instead of SQL objects, No-SQL databases allow developers to send and retrieve data as JSON documents. In this blog, we will demonstrate how to connect to MongoDB using Mongoose and MongoDB Atlas in Node.js. Let’s get started! In this blog, we […]

How to ETL API data to AWS S3 Bucket using Apache Airflow?

Reading Time: 7 minutes 2.5 quintillion bytes of data are produced every day with 90% of it generated solely in the last 2 years (Source: Forbes). Data is pulled, cleaned, transfigured & then presented for analytical purposes & put to use in thousands of applications to fulfill consumer needs & more. While generating insights from the data is important, […]

Perform a Session-based User Authentication in Express.js

Reading Time: 10 minutes While it is possible to render static websites from a server, this approach has many limitations, including code duplication and a lack of flexibility — particularly when it comes to reading data from a database. Fortunately, Express.js includes a template engine that allows us to generate dynamic HTML pages from our server-side applications. A template […]

How to detect operational issues in Lambda Function automatically with Amazon DevOps Guru for Serverless?

Reading Time: 8 minutes Hands-on In this hands-on, we will see how we can detect operational issues in Lambda Function with Amazon DevOps Guru for Serverless. We will first log in and navigate to the AWS console. Then, we will change the region to the one that has Amazon DevOps Guru available. Navigating to the Amazon DevOps Guru dashboard, […]

Amazon DevOps Guru for Serverless

Reading Time: 9 minutes With digitalization and the cloud assuming responsibility for the development and deployment of new features in software applications, error handling is a critical activity that aids in faster deployment. Any error in the chain, from writing code to deploying to monitoring performance, can degrade customer experience, increase costs, or immediately disrupt critical services. Amazon has […]

Back To Top