JavaScript Featured JS-Quickie: pretty-printing a JSON object without external dependencies Ever wanted to properly format a JSON string without external library? JavaScript's native JSON.stringify() provides you with exactly that functionality out of the box.
Vue.js Show / hide password input values with Vue.js 3 and the Composition API Nowadays it's common to have the possibility to toggle the visibility of a password field on websites, applications, login screens etc. Implementing such a functionality with Vue.js 3 (and the Composition API) is really simple and straightforward.
Vue.js Featured Creating a transparent base component with Vue.js Base components in Vue.js are components, which can help you reducing the amount of work you have to do and code you have to write in order to (re)use components in Vue.js in multiple places.
JavaScript Passing by value or by reference? How does JavaScript handle it? The way JavaScript works while passing around variables is something fundamental to understand if you're developing in JavaScript as it can lead to some unexpected behavior in some cases.
AWS Delivering dynamic non-HTTPS content over HTTPS with the help of AWS Having a HTTPS-encrypted website is becoming more and more important. In fact, by now it should already be the standard and we should not even have to talk about this topic anymore. As we started migrating our customers' websites to HTTPS, we faced the problem, that webcams most of
JavaScript JavaScript prototypes. It doesn't have to be complicated. It's hard to skip prototypes (or the prototype chain or prototypal inheritance) if you want to dive deeper into JS development (Not only pure JS, but also Node.js, Frameworks like Vue.js, React.js, Angular,...). If you are like me a few years ago and get some
Vue.js Vue.js quick tip: Using destructuring assignment in for loops > Vue.js [https://vuejs.org/] is a modern, lightweight frontend framework which massively gained popularity over the past few years. If you have never heard about Vue.js before and are interested in learning more about it, the best way to get started is to read through the official