Node starter project (TypeScript + Docker)

Project skeleton We will assume that the project will have several smaller projects, ie. container, e.g. a part for microservices, a part for working with the database… It is good to create subfolders in the root of the project for each smaller project, e.g.:

Creating package.json First we will create a package.json file in … Read more

Docker: Running Apps Everywhere

Introduction to the Docker world What is Docker? Docker is a platform that allows developers to easily create, deploy and run applications inside containers. What are containers? Containers can be understood as lightweight virtual machines, but they are much faster and less demanding than them, they contain everything needed to run an application: code, libraries … Read more