Matheus Julidori

Matheus Julidori @matheusjulidori

About: Fullstack dev (Node.js + React) 👨‍💻 | Passionate about web development 🌐 | Love teaching 👨‍🏫 | Never refuse a good coffee ☕ | 🇧🇷 Brazil | Always learning 🚀

Location:
Brazil
Joined:
Nov 5, 2024

Matheus Julidori
articles - 15 total

WIll AI really replace devs?

TL;DR: AI isn't replacing skilled developers; it's a powerful tool that augments their work,...

Learn More 11 7Jun 18

npm vs Yarn vs pnpm: The Great Package Manager Race (And We Have a Winner!)

TL;DR: npm is the default Node.js manager, functional but with notable performance and dependency...

Learn More 4 1Jun 17

Still Drowning in API Choices? My Battle-Tested Guide to REST, GraphQL & gRPC

TL;DR: REST is the seasoned veteran: simple, widely understood, and a go-to for most standard web...

Learn More 6 2Jun 12

Is Node.js Dying? Meet the Technologies That Promise to Replace It

TL;DR: Node.js is still alive and well — but newer runtimes like Deno and Bun are shaking things...

Learn More 15 17Jun 4

Do you know how it works? - JS Closures

TL;DR A closure is when a function “remembers” variables from its outer scope. This works even...

Learn More 6 0Jun 2

Do you know how it works? - JS Scopes

TL;DR Every variable or function in JavaScript lives inside a scope — global, function, or...

Learn More 15 7May 26

Do you know how it works? - Higher Order Functions (HOFs)

TL;DR: Higher-Order Functions (HOFs) are functions that receive or return other functions. They’re...

Learn More 1 0May 19

Do you know how it works? - JS Getters & Setters

TL;DR Getters and setters allow you to control access to class properties. Setters are used to...

Learn More 0 0May 14

Do you know how it works? - The "this" keyword

TL;DR: In JavaScript, the value of this depends entirely on how a function is called, not where it...

Learn More 0 0May 5

Do you know how it works? - Factory Functions vs Constructor Functions

TL;DR: Factory functions and constructor functions both solve the problem of object creation and...

Learn More 3 0Apr 28

Do you know how it works? - JavaScript Constructor Functions

TL;DR: Constructor functions in JavaScript are another way to create reusable object templates, much...

Learn More 3 0Apr 22

Do you know how it works? - JavaScript Factory Functions

TL;DR: Factory Functions are functions that build and return objects based on input parameters —...

Learn More 1 0Apr 14

Do you know how it works? - JavaScript Prototype and __proto__

TL;DR: In JavaScript, all inheritance is prototypal — meaning every object inherits from another...

Learn More 0 0Apr 7

Do you know how it works? - JavaScript Inheritance

TL;DR: JavaScript inheritance can be approached in two main ways: class-based and prototypal....

Learn More 2 0Apr 1

Do you know how it works? - JavaScript Arrow Functions

TL;DR: Arrow functions in JavaScript are concise, powerful, and perfect for callbacks and short...

Learn More 2 4Mar 26