Issue #275 · May 30, 2022

Introduction to Reactivity with SolidJS

“Imagination is the Discovering Faculty, pre-eminently. It is that which penetrates into the unseen worlds around us, the worlds of Science”

Introduction to Reactivity with SolidJS

Introduction to Reactivity with SolidJS

SolidJS is all the rage right now and we believe it's for good reasons. So why should you be interested in this framework. Our opinion is that SolidJS is a modern take on frontend development which tries to take the best from React, VueJS and Svelte and leaves out the rest. It also has an interesting approach to reactivity. Check out this video to find out more!

Articles

How to use EventBridge as a Cross-Account Event Backbone

If you have ever built big AWS apps divided into several Micro service applications spread across multiple AWS accounts, well first of all great stuff! This is a seriously advanced cloud architecture use case, you should be proud! Secondly, how did you manage communication between services in such case? In this article the great and mighty Eoin Shanaghy shows us how to do that using EventBridge as a cross-account event backbone.

Pure vs Impure Functions

A topic that never gets old and that, in all its simplicity, can have a dramatic effect on how readable, composable, and testable a code base could be. If you still have doubts about why you should think more in terms of pure functions, check out this article!

nathants/libaws: AWS should be easy

An interesting open source project that aims at simplify how to manage infrastructure as code with AWS. Something we definitely want to play with. We don't have a strong opinion right now, but we thought it was worth sharing and supporting this ambitious project. If you have tried it, let us know what you think!

You don't need void 0 in JavaScript

Have you ever seen void 0 in a piece of JavaScript code? I did, but I think this happened to me just a handful of times... So if you are asking what the heck void 0 means and whether you need it or not... well, all the answers you are looking for are in this article!

Book of the week

You Don't Know JS: ES6 & Beyond

You Don't Know JS: ES6 & Beyond

by Kyle Simpson

As part of the "You Don’t Know JS" series, this compact guide focuses on new features available in ECMAScript 6 (ES6), the latest version of the standard upon which JavaScript is built. Learn new ES6 syntax that eases the pain points of common programming idioms. Organize code with iterators, generators, modules, and classes. Express async flow control with Promises combined with generators. Use collections to work more efficiently with data in structured waysLeverage new API helpers, including Array, Object, Math, Number, and String. Extend your program’s capabilities through meta programming.