Skip to content

Commit a702c6b

Browse files
Eloqdoc vs Mongodb Articles (#158)
* feat: EloqDoc vs MongoDB article * fix: publication date and allBlogs changes * feat: EloqDoc vs MongoDB final Blog series * fix: Remove rendant code * fix: Code issues * Update src/app/blog/data.ts Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update data.ts * Update data.ts * Fix Prettier formatting * Rename blog folders to match SEO-friendly slugs * Fix blog paths, internal links, and typos --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 3debfee commit a702c6b

File tree

27 files changed

+592
-12
lines changed

27 files changed

+592
-12
lines changed

src/app/blog/data.ts

Lines changed: 40 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import MongoDBCoverImage from "@/app/blog/mongoDB-vs-postgreSQL/cover.png"
1010
import StateOfDatabasesCoverImage from "@/app/blog/state-of-databases-2024/cover.png"
1111
import CursorWindsurfCoverImage from "@/app/blog/cursor-vs-windsurf/cover.png"
1212
import BetterAuthCoverImage from "@/app/blog/betterauth-vs-nextauth/cover.png"
13+
import EloqdocVSMongoDB from "@/app/blog/eloqdoc-vs-mongodb-architecture-and-design/cover.png"
1314

1415
export const allAuthors = [
1516
{ name: "Ankur Tyagi", link: "https://theankurtyagi.com/" },
@@ -18,6 +19,33 @@ export const allAuthors = [
1819
]
1920

2021
export const allBlogs = [
22+
{
23+
author: "Ankur Tyagi",
24+
slug: "eloqdoc-vs-mongodb-feature-comparison",
25+
title: "EloqDoc vs MongoDB - Part 2: Feature-by-Feature Comparison",
26+
excerpt:
27+
"Feature-by-feature comparison of EloqDoc and MongoDB capabilities",
28+
description:
29+
"A detailed comparison of key features including transactions, indexing, consistency guarantees, and query capabilities. This part highlights where the two databases overlap and where their design philosophies clearly diverge in real world usage.",
30+
publishedAt: "2026-01-02T00:00:00Z",
31+
category: "Databases",
32+
image: EloqdocVSMongoDB.src,
33+
isNew: false,
34+
isFeatured: true,
35+
},
36+
{
37+
author: "Ankur Tyagi",
38+
slug: "eloqdoc-vs-mongodb-architecture-and-design",
39+
title: "EloqDoc vs MongoDB - Part 1: Architecture and Design Overview",
40+
excerpt: "An overview of EloqDoc and MongoDB architecture",
41+
description:
42+
"This article breaks down the core architecture of EloqDoc and MongoDB. It focuses on storage layout, replication model, and how each system is designed to scale. The goal is to understand what tradeoffs were made at the foundation level before looking at features or performance.",
43+
publishedAt: "2026-01-02T00:00:00Z",
44+
category: "Databases",
45+
image: EloqdocVSMongoDB.src,
46+
isNew: true,
47+
isFeatured: true,
48+
},
2149
{
2250
author: "Jitendra Nirnejak",
2351
slug: "uv-and-ruff-turbocharging-python-development-with-rust-powered-tools",
@@ -79,23 +107,23 @@ export const allBlogs = [
79107
description:
80108
"A comparison of Cursor and Windsurf to help you choose the best AI code editor for your team",
81109
publishedAt: "2025-04-11T00:00:00Z",
82-
image: CursorWindsurfCoverImage.src,
83110
category: "AI Code Editor",
111+
image: CursorWindsurfCoverImage.src,
84112
isNew: false,
85113
isFeatured: false,
86114
},
87115
{
88116
author: "Ankur Tyagi",
89117
slug: "cody-vs-cursor-choosing-the-right-ai-code-assistant-for-your-development-workflow",
90118
title:
91-
"Cody vs. Cursor: Choosing the Right AI Code Assistant for Your Development Workflow",
119+
"Cody vs Cursor: Choosing the Right AI Code Assistant for Your Development Workflow",
92120
excerpt:
93121
"Choose the right AI code assistant for your development workflow.",
94122
description:
95123
"A comparison of Cody and Cursor to help you choose the right AI code assistant",
96124
publishedAt: "2025-03-17T00:00:00Z",
97-
image: CodyCoverImage.src,
98125
category: "AI Code Assistant",
126+
image: CodyCoverImage.src,
99127
isNew: false,
100128
isFeatured: false,
101129
},
@@ -107,8 +135,8 @@ export const allBlogs = [
107135
"Discover how the View Transitions API enhances web experiences with seamless animations and smooth page transitions, improving user engagement and performance.",
108136
description: "Learn how the View Transitions API enhances web experiences.",
109137
publishedAt: "2025-02-24T00:00:00Z",
110-
image: ViewTransitionsCoverImage.src,
111138
category: "Web Development",
139+
image: ViewTransitionsCoverImage.src,
112140
isNew: false,
113141
isFeatured: false,
114142
},
@@ -119,8 +147,8 @@ export const allBlogs = [
119147
excerpt: "Choose the right AI code review tool",
120148
description: "Everything about AI code review tools",
121149
publishedAt: "2024-12-26T00:00:00Z",
122-
image: CodeRabbitCoverImage.src,
123150
category: "Code Review",
151+
image: CodeRabbitCoverImage.src,
124152
isNew: false,
125153
isFeatured: true,
126154
},
@@ -132,8 +160,8 @@ export const allBlogs = [
132160
description:
133161
"A comparison of Twilio and Stream for building automated customer support solutions",
134162
publishedAt: "2024-12-11T00:00:00Z",
135-
image: TwilioCoverImage.src,
136163
category: "SaaS",
164+
image: TwilioCoverImage.src,
137165
isNew: false,
138166
isFeatured: false,
139167
},
@@ -145,21 +173,21 @@ export const allBlogs = [
145173
description:
146174
"A comparison of Clerk and Supabase to help you choose the best auth for your SaaS",
147175
publishedAt: "2024-10-28T00:00:00Z",
148-
image: SupabaseCoverImage.src,
149176
category: "Auth",
177+
image: SupabaseCoverImage.src,
150178
isNew: false,
151179
isFeatured: true,
152180
},
153181
{
154182
author: "Ankur Tyagi",
155183
slug: "mongoDB-vs-postgreSQL",
156184
title: "MongoDB vs PostgreSQL: A Technical Comparison",
157-
excerpt: "A technical comparison of MongoDB vs. PostgreSQL",
185+
excerpt: "A technical comparison of MongoDB vs PostgreSQL",
158186
description:
159-
"A technical comparison of MongoDB vs. PostgreSQL to help you choose the best database solution for your SaaS",
187+
"A technical comparison of MongoDB vs PostgreSQL to help you choose the best database solution for your SaaS",
160188
publishedAt: "2024-09-26T00:00:00Z",
161-
image: MongoDBCoverImage.src,
162189
category: "Database",
190+
image: MongoDBCoverImage.src,
163191
isNew: false,
164192
isFeatured: false,
165193
},
@@ -170,8 +198,8 @@ export const allBlogs = [
170198
excerpt: "My thoughts on the state of Databases for Serverless",
171199
description: "My thoughts on the state of Databases for Serverless",
172200
publishedAt: "2024-09-03T00:00:00Z",
173-
image: StateOfDatabasesCoverImage.src,
174201
category: "Database",
202+
image: StateOfDatabasesCoverImage.src,
175203
isNew: false,
176204
isFeatured: false,
177205
},
@@ -183,8 +211,8 @@ export const allBlogs = [
183211
description:
184212
"A comparison of Neon and Supabase to help you choose the best database for your SaaS",
185213
publishedAt: "2024-08-08T00:00:00Z",
186-
image: NeonCoverImage.src,
187214
category: "Database",
215+
image: NeonCoverImage.src,
188216
isNew: false,
189217
isFeatured: true,
190218
},
1.49 MB
Loading
101 KB
Loading
510 KB
Loading
47 KB
Loading

0 commit comments

Comments
 (0)