klamser.devDockerize your Development Environment for NodeJSUsing Docker in your development workflow has a positive impact on your productivity. It eliminates the typical "It worked on my machine" type of bugs and the setup on a different machine only requires a running Docker daemon and nothing else. Before...Oct 5, 2020·6 min read
klamser.dev6 Tools I use for Web DevelopmentAll of the six tools I will discuss in this article are used by me on a daily basis. Some of them you may already use, some of them you maybe don't even know about but all of them make me a more productive and organized developer. So let's jump right...Oct 1, 2020·4 min read
klamser.devSetting up a REST-API using ExpressIn this article, I want to show you a quick and solid way to set up a REST-API with ExpressJS. This does not include any kind of authentication or authorization. We will just be setting up one single route and define some standards that will help us ...Sep 26, 2020·10 min read
klamser.devVS Code Extensions I use DailyIn this article, I want to go through my favorite Visual Studio Code Extensions that I use on a daily basis. Most of the time I use VS Code for writing JavaScript applications (Vanilla JavaScript, React, Angular, NodeJS… You name it). Bracket Pair Co...Sep 23, 2020·4 min read
klamser.devBuilding a Quiz App in JavaScriptMy goal is to take you on a trip from planning to building a quiz application. For that, we will use vanilla JavaScript, CSS, and HTML. No additional libraries or packages. Let’s get started by defining what our quiz app can do. Defining the specific...Sep 22, 2020·20 min read