01 Oct 2023 Typescript Monorepo with NPM workspaces Featured post (10.3K views) During the development of my recent project, I decided to split some components to their own packages, and used npm workspaces for that.
09 Sep 2023 On types and JavaScript drama Earlier this week, the entire JavaScript community was in shambles over a controversial decision in a popular open-source project.
25 Jan 2023 Inheritance, Composition, and everything in–between There are many concepts in the OOP paradigm. Inheritance is the most known, and it allows us to model software as relations between objects.
03 Nov 2022 4 Ways to Minimize your Dependencies in Node.js We all know the joke about how node_modules is the heaviest object in the universe.
25 Aug 2022 Implementing Promisable setTimeout setTimeout() is the most powerful execution control function. Sadly - it's not async. Lets turn it into one.
11 Dec 2021 NodeJS Native Module vs WASM In my previous post about [[supercharge-nodejs-with-rust|Native Rust Modules for NodeJS]], people asked me how neon bindings would compare to WASM. Let's check!
23 Oct 2021 Supercharge Your NodeJS With Rust Node isn't the fastest framework out here. It's not the slowest either, v8 is doing wonders to its speed, but nevertheless, if we setup an unfair battle between Node and say Rust; Node will lose.
24 Jul 2017 React.JS Localization v0.2 In my last post I've discussed ReactJS localization. Now lets find the proper way to do localization.
27 Aug 2016 Validating Requests With a Simple Middleware for Express There are two aspects of good API design: (1) a control of what it accepts, and (2) taking a brief look will help you understand what it does.
18 Aug 2015 A different approach for localizing react.js app Using jquery/globalize to localize your React.js applications.