Dávid Szabó
Dave is Coding

Dave is Coding

Follow
homebadgesnewsletter

Why do you need an init process inside your Docker container (PID 1)

Sep 7, 20227 min read

When you run your application inside a Docker container, it will be assigned process identifier (PID) 1. This particular PID is special in the Unix...

Why do you need an init process inside your Docker container (PID 1)

Separate Node.js unit, integration, and E2E tests using Jest projects

Aug 22, 20228 min read

The classic test pyramid is made up of the unit, integration, and end-to-end tests. Unit tests are supposed to run fast after each change in your IDE...

Separate Node.js unit, integration, and E2E tests using Jest projects

Node.js TypeScript monorepo via NPM workspaces

Aug 14, 20225 min read

Monorepos are all the rage right now. Modern projects are all using NX to set up a monorepo. But why would you introduce such a complex tool into your...

Node.js TypeScript monorepo via NPM workspaces

My feelings about Go after spending a weekend together

Feb 17, 20214 min read

I had a great weekend following the Learn Go with Tests online book. I spent about 15 hours going through the book and firing up a few practice...

My feelings about Go after spending a weekend together

Setting up Prettier in a Create React App project

Dec 20, 20202 min read

Install dependencies # Yarn yarn add -D prettier eslint-config-prettier eslint-plugin-prettier # NPM npm install -D prettier eslint-config-prettier...

Setting up Prettier in a Create React App project