Stop Wasting Memory: Use .lean() Like a Pro
Introduction Alright, let’s talk about something that should be common sense but somehow isn’t: using .lean() in Mongoose. If you’ve ever written a simple query and thought, “Why is my app using so much memory?”, chances are you’re not using .lean(). And if you're the kind of developer who likes to flex about performance optimizations but still ignores .lean(), this one's for you. What the Heck is .lean()? Mongoose normally returns full-fat documents, loaded with built-in magic: getters, setters, hooks, change tracking—you name it. But let’s be real: 90% of the time, you don’t need that extra fluff when you're just reading data. Enter .lean(), a simple method that tells Mongoose: “Hey, don’t give me a fancy, bloated document. Just give me a plain JavaScript object.” And boom! You just saved memory, improved query speed, and maybe even made your API 10% less of a dumpster fire. How .lean() Works (With Examples) Without .lean() (The Memory Hog Approach) const article = await ArticlesModel.findOne({ title: "How to Waste Memory" }); console.log(article); // Output: Mongoose Document with tons of hidden properties console.log(typeof article); // "object" (but a heavy Mongoose object) console.log(article.save); // Function exists! (But you never needed it, did you?) Here’s the problem: this returns a full Mongoose document, packed with hidden features like .save(), .validate(), and other things you will never use in a read operation. With .lean() (The Smart Way) const article = await ArticlesModel.findOne({ title: "How to Optimize Performance" }).lean(); console.log(article); // Output: { _id: "abc123", title: "How to Optimize Performance" } console.log(typeof article); // "object" (plain JavaScript object) console.log(article.save); // undefined (because you never needed it!) ✅ Boom! Faster, lighter, and without unnecessary Mongoose baggage. Why Should You Care? 1. .lean() Makes Queries Faster ⚡ Full Mongoose documents come with extra processing. .lean() skips that overhead and returns raw JSON objects. 2. .lean() Saves Memory

Introduction
Alright, let’s talk about something that should be common sense but somehow isn’t: using .lean()
in Mongoose. If you’ve ever written a simple query and thought, “Why is my app using so much memory?”, chances are you’re not using .lean()
. And if you're the kind of developer who likes to flex about performance optimizations but still ignores .lean()
, this one's for you.
What the Heck is .lean()
?
Mongoose normally returns full-fat documents, loaded with built-in magic: getters, setters, hooks, change tracking—you name it. But let’s be real: 90% of the time, you don’t need that extra fluff when you're just reading data.
Enter .lean()
, a simple method that tells Mongoose:
“Hey, don’t give me a fancy, bloated document. Just give me a plain JavaScript object.”
And boom! You just saved memory, improved query speed, and maybe even made your API 10% less of a dumpster fire.
How .lean()
Works (With Examples)
Without .lean()
(The Memory Hog Approach)
const article = await ArticlesModel.findOne({ title: "How to Waste Memory" });
console.log(article);
// Output: Mongoose Document with tons of hidden properties
console.log(typeof article); // "object" (but a heavy Mongoose object)
console.log(article.save); // Function exists! (But you never needed it, did you?)
Here’s the problem: this returns a full Mongoose document, packed with hidden features like .save()
, .validate()
, and other things you will never use in a read operation.
With .lean()
(The Smart Way)
const article = await ArticlesModel.findOne({ title: "How to Optimize Performance" }).lean();
console.log(article);
// Output: { _id: "abc123", title: "How to Optimize Performance" }
console.log(typeof article); // "object" (plain JavaScript object)
console.log(article.save); // undefined (because you never needed it!)
✅ Boom! Faster, lighter, and without unnecessary Mongoose baggage.
Why Should You Care?
1. .lean()
Makes Queries Faster ⚡
- Full Mongoose documents come with extra processing.
-
.lean()
skips that overhead and returns raw JSON objects.
2. .lean()
Saves Memory