In this chapter, we are going to continue from where we left off from the previous chapter intuitive with a plethora of functionalities.
How To Build a Github Jobs App using React, Apollo, and GraphQL – Part #1: Build the GraphQL Server
In this series, we will be building a Github Jobs App using React, Node, GraphQL, and Apollo Client. We will cover it in two separate articles. In the first part, we will create a GraphQL server from scratch with Node and Express.js.
How to Run API Tests Automatically Every Time Your App Is Deployed using Loadmill
Writing API tests for web applications has proven to be the foundation for reliable and usable applications that work with API services. End to end API tests, especially, define a specification for applications thereby giving developers the confidence that their application meets the laid down requirements.
Minimize Downtime by Creating a Health-check for Your NodeJS Application
When an API receives more traffic than it can handle, it will crash and be unavailable until someone manually brings it back online. This is referred to as downtime. One of the most important aspects of maintaining a production application is minimizing downtime.
Node.js Lesson 5: Global modules
Hello everyone, we will learn about global modules in this lesson. We will talk about what are they, how they work, and why we need them. Let’s start.
Understanding Data Structures in JavaScript (Linked Lists)
Understanding Linked Lists can be a difficult task when you are a beginner JavaScript developer since JavaScript does not provide built-in Linked List support. In an advanced language like JavaScript, we need to implement this data structure by scratch and, if you are unfamiliar with how this data structure works, the implementation part becomes that much more difficult.
Node.js Lesson 4: NPM Package Structure
Hey everyone, this lesson is going to be all about the node package and its structure. We will understand what the package.json file actually is and its characteristics. We will learn what does those mighty properties inside package.json denotes and why they are important. Let’s start.
How to send multiple forms with Ajax (FormData) in Django
In this article, I am going to show you how to send multiple forms in Django using Ajax and FormData. Normally, it’s also possible to send forms only with Ajax by defining data inside the function. However, with FormData it becomes much simpler and faster to handle the form submission.
Node.js Lesson 3: Node Package Manager
Hello everyone, we are going to learn about Node Package Manager (NPM) in this lesson.
Spring Cloud Config Refresh Strategies
In this article, we will focus on how to refresh the configuration data fetched from the Spring Cloud Config Server.