I recently moved a build-job for our front-end library over to Azure Pipelines. This build-job builds multiple TypeScript projects where each one produces its own NPM package using the Lerna … Continue Reading Update Azure Pipeline BuildNumber using PowerShell
My goal was to have a polyfill.js bundle generated by Webpack 4 that gets inserted into the apps index.html file before any other Javascript as it must load and install … Continue Reading Polyfill, Vendors and App Bundle using Webpack 4
Intro We use React for most of our current web-frontends. For older React Apps we used the MobX (databinding-library for MVVM) and then moved over to Redux. But even with … Continue Reading State-Handling in React apps
I’m relatively new to the stack of React, Redux and TypeScript but I had to do a lot of coding in this area over the past months. To get started … Continue Reading Structuring a React/Redux/TypeScript app
Again some notes from my recent React and Javascript/TypeScript learnings. I knew already how to use Promises by building method chains with .then() or .catch() to chain the asynchronous actions … Continue Reading Javascript async/await in React Components