Node.js

How To Build a Blog with Nest.js, MongoDB, and Vue.js — step-by-step Databases tutorial on Progressive Robot

How To Build a Blog with Nest.js, MongoDB, and Vue.js

Nest.js is a scalable, server-side JavaScript framework built with TypeScript that still preserves compatibility with JavaScript. You’ll approach this project by separating the application into two different sections: the frontend and the backend. You’ll use Nest.js to build the backend, Vue.js for the front-end application, and MongoDB to persist your app’s data.

Read more
How To Build Command Line Applications with Node.js — step-by-step Javascript tutorial on Progressive Robot

How To Build Command Line Applications with Node.js

As a developer, chances are you spend most of your time in your terminal, typing in commands to help you get around some tasks. Some of these commands come built into your Operating System, while some of them you install through some third party helper such as npm, or brew, or even downloading…

Read more
How To Handle Asynchronous Tasks with Node.js and BullMQ — step-by-step Databases tutorial on Progressive Robot

How To Handle Asynchronous Tasks with Node.js and BullMQ

To avoid slowing down the request/response circle, you can use bullmq, a distributed task queue that allows you to offload time-consuming tasks from your Node.js app. To keep track of jobs, bullmq uses Redis to store a short description of each job in a queue. In this article, you will use bullmq to offload a time-consuming task into the background, which will enable an application to respond quickly to users.

Read more
Installation von Node.js auf Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

Installation von Node.js auf Ubuntu 18.04

Node.js ist eine JavaScript-Plattform für die allgemeine Programmierung, die es Benutzern ermöglicht, schnell Netzwerkanwendungen zu erstellen. Durch die Nutzung von JavaScript am Front- und Backend ermöglicht Node.js eine gleichbleibende, integrierte…

Read more
How To Integrate MongoDB with Your Node Application — step-by-step Linux tutorial on Progressive Robot

How To Integrate MongoDB with Your Node Application

In the process of working with Node.js, you may find yourself developing a project that stores and queries data. This tutorial will show you how to integrate MongoDB with an existing Node application. This process will involve adding user and database information to your application code and using the Object Document Mapper Mongoose. At the end of the tutorial, you will have a working application that will take a user’s input and display it in the browser.

Read more
How To Run Serverless Workloads with Knative on Kubernetes — step-by-step Docker tutorial on Progressive Robot

How To Run Serverless Workloads with Knative on Kubernetes

Knative is a Kubernetes-based platform that provides components to deploy and manage serverless workloads. Knative offers open-source Kubernetes integration, cloud-agnosticism, building blocks, and extensibility. In this tutorial, you will use Knative Serving to deploy a Node.js application as a serverless workload on a Kubernetes cluster.

Read more
CHAT