News
Guarding Against Disposable Design
Disposability is a tricky term to handle in the digital world. So many things are changing so quickly — programming languages, frameworks, and design trends to name but a few — that it often feels inevitable that the things we make will be outdated almost … more Read More
News
Presentation: From Mixins to Custom Hooks: History of Sharing in React
Ben Ilegbodu takes a history lesson on sharing in React in order to better understand how modern day custom hooks work and the problems they solve. By Ben Ilegbodu … more Read More
News
API Factories for Vue.js & Nuxt
How are you organizing your API calls? Have you considered API factories to make your codebase easier to work with, increasing your team’s productivity? A while back, I shared a few tips on how you can build and maintain a large Vue.js project. One of … more Read More
News
What is functional programming? A practical guide
Functional programming has been a current in software development since the earliest days, but has taken on new importance in the modern era. This article looks at the concepts behind functional programming and offers a practical understanding with examples … more Read More
News
ECMAScript 2021 spec for JavaScript nears the finish line
ECMAScript 2021, the planned next version of the official specification underlying JavaScript, is set to add capabilities for strings and promises. [ Keep up with the latest developments in JavaScript and software development. Subscribe to the InfoWorld … more Read More
News
How to Read React Errors (fix ‘Cannot read property of undefined’!)
Got an error like this in your React component? Cannot read property `map` of undefined In this post we’ll talk about how to fix this one specifically, and along the way you’ll learn how to approach fixing errors in general. We’ll cover how to read a … more Read More