Node.js advanced pattern: Dependency Injection Container 📅 Jun 29, 2019 · ☕ 7 min read · ✍️ Iskander Samatov Dependency Injection Container, an advanced module wiring pattern used by the majority of applications and libraries in Node.js.
Node.js Build scalable architecture with plugins 📅 Jun 15, 2019 · ☕ 6 min read · ✍️ Iskander Samatov In this short blog post, I want to go over the benefits and reasons for separating your reusable Node.js code into plugins.
Node.js: Module wiring and dependencies explained 📅 Jun 1, 2019 · ☕ 9 min read · ✍️ Iskander Samatov In this post, let's explore the behind-scenes of the Node.js module system and how it's wired together in a way that flexible and scalable.
Node.JS: Composable factory functions over classes 📅 Apr 14, 2019 · ☕ 6 min read · ✍️ Iskander Samatov Composable Factory Functions let you create objects that combine multiple features without creating a tightly coupled class hierarchy.
How to create social media app with GetStream and Node.JS 📅 Apr 7, 2019 · ☕ 7 min read · ✍️ Iskander Samatov Let's go over using the GetStream API with Node.JS to build your social media app components and make the development faster.
JavaScript: Write your asynchronous code linearly 📅 Feb 23, 2019 · ☕ 6 min read · ✍️ Iskander Samatov This short article lists tips and tricks and explains how to structure and write your asynchronous code in a linear fashion in JavaScript.
How to connect Gmail Add-on to your non-google service 📅 Feb 15, 2019 · ☕ 7 min read · ✍️ Iskander Samatov Tutorial on how to connect your Gmail add-on to your non-google services and set up a proper authentication system for the user.
Node.JS: Busboy, reading file and text parameters 📅 Jan 24, 2019 · ☕ 4 min read · ✍️ Iskander Samatov Recently, I implemented a solution to read both file and text parameters using Busboy and in this tutorial, I will show you how.