1
Sep

Creating MySQL 5.7 Server with Docker

Docker is an open platform for developing, shipping, and running applications. Containers are isolated environments that hold an application along with all the software packages it needs. Running MySQL inside a Docker container lets you separate your database from your code. You can also use a container orchestrator like Kubernetes to scale MySQL independently of your API server instance. [...]

View More
31
Aug

Create a multi tenant application in Nest.js

Multitenancy and microservices are used nowadays very frequently in Saas application development. In Saas, their cosists of many modules that work together. Here we will learn about the multi-tenant application in Nest.js with microservice architecture. Nest.js is a progressive and scalable framework for server-side application development. Nest provides an out-of-the-box application architecture which allows developers and teams to create highly testable, scalable, loosely coupled, and easily maintainable applications. The architecture is heavily inspired by Angular. [...]

View More
19
Oct

A Simple Guide To Getting Started With React.

React is a JavaScript library for building user interfaces. It makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes. The best way to learn React is to jump in and build something. The easiest way to start an app with React is to use Create React App , which allows you to write code without worrying about the setup: [...]

View More
14
Oct

Scaling Express.js application using node.js modules

By starting a cluster of processes on a multi-core CPU, we may significantly improve the speed of a Node app. A cluster runs many app instances, ideally one for each CPU core, sharing the load and work among them. [...]

View More