How to get started with Framework7, VueJS and Webpack

TL;DR $ npm install -g vue-cli $ vue init valnub/vue-framework7-webpack-template my-project $ cd my-project $ npm install $ npm run dev Note: Replace my-project with the name of your project. Check out my Github repo for template source code: https://github.com/valnub/vue-framework7-webpack-template In the following video I explain how to get started quick and easily with this […]

How we became the 2nd fastest online retail shop in Germany

I’ve been working for my client HSE24 for quite some time now on optimizing their website’s load performance with their team. In this article I’d like to share how and what we optimized to become the 2nd fastest retail online shop in Germany according to Dynatrace Performance Benchmark. Actions to improve website performance Disclaimer: This […]

How to add dots every 3 digits in currency values with JavaScript

If you’re European like me, you’re probably used to this notation: € 366.432 instead of 366,432 or 366432. In order to get this done in JavaScript you want to do the following: // Number var money = 366432; // Convert to String and add dots every 3 digits var moneyDots = money.toString().replace(/(\d)(?=(\d\d\d)+(?!\d))/g, “$1.”); // Set […]