How to NOT do monorepos

Who actually needs a monorepo? Monorepos exist to solve the problems that arise when you you have deeply coupled and interconnected projects.For example, Vue.js has many libraries that depend...
0 Read More

Objects in JS: The Beginner’s Guide

JavaScript objects are essentially associative arrays with some extra features​. They store properties (key-value pairs) where each key is a name (usually a string or symbol) that maps to a value (w...
0 Read More