Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
216 changes: 216 additions & 0 deletions src/routes/blog/post/using-nextjs-wrong/+page.markdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,216 @@
---
layout: post
title: "You're probably using Next.js wrong"
description: Next.js isn't just React with extra steps. Learn when server-side rendering actually matters and how to use it properly with Appwrite.
date: 2026-01-22
cover: /images/blog/using-nextjs-wrong/cover.png
timeToRead: 8
author: atharva
category: tutorial
featured: false
---

Next.js has become the default choice for new React projects. But here's the problem: most developers treat it like React with a fancy router. They spin up a Next.js app, slap `'use client'` on every component, fetch data in `useEffect`, and wonder why when they face problems.

If that sounds familiar, you're shipping bloat for no reason.

# Next.js is not React

React is a UI library. It renders components and manages state. Routing, data fetching, and server logic are your problems.

Next.js is a full-stack framework that uses React for its UI layer. It gives you server-side rendering, static generation, API routes, and server components out of the box. These features exist for specific reasons, and if you're not using them, you're just adding complexity without benefit.

# Does SEO matter?

This is the deciding factor. If search engines need to index your content, you need server-side rendering. Client-rendered pages ship JavaScript that builds the DOM after load. Search crawlers can technically execute JavaScript, but they're inconsistent at it. Your e-commerce product pages, blog posts, and landing pages should render on the server or should be statically pre-rendered.

If you're building an internal dashboard or admin panel that lives behind a login, SEO is irrelevant. Client-side rendering is fine. You could use plain React with Vite and skip the Next.js overhead entirely.

# What server components actually solve

Server components aren't just about SEO. They solve three problems:

## Initial page load

Client components ship JavaScript to the browser, which then fetches data and renders. Users see a loading spinner. Server components fetch data and render HTML before anything reaches the browser. Users see content immediately.

## Bundle size

Every library you import in a client component ends up in your JavaScript bundle. Server components run on the server only. That heavy markdown parser or date library never touches the browser.

## Security

Server components can access databases and secrets directly. They are also capable of accessing environment variables without the `NEXT_PUBLIC_` prefix, since these components are run exclusively on the server.

# Converting a client component to a server component

Here's a typical client-side pattern:

```jsx
"use client";

import { useState, useEffect } from "react";
import { tablesDB } from "@/lib/appwrite";

export default function Products() {
const [products, setProducts] = useState([]);
const [loading, setLoading] = useState(true);

useEffect(() => {
tablesDB
.listRows({
databaseId: DATABASE_ID,
tableId: TABLE_ID,
queries: [Query.equal("status", "active")],
})
.then((res) => setProducts(res.rows))
.finally(() => setLoading(false));
}, []);

if (loading) return <div>Loading...</div>;
return <ProductGrid products={products} />;
}
```

Here's the server component equivalent (without `'use client'`):

```jsx
import { createAdminClient } from "@/lib/appwrite/server";

export default async function Products() {
const { tablesDB } = await createAdminClient();
const { rows } = await tablesDB.listRows({
databaseId: DATABASE_ID,
tableId: TABLE_ID,
queries: [Query.equal("status", "active")],
});

return <ProductGrid products={rows} />;
}
```

# Setting up Appwrite for server-side rendering

The Appwrite Web SDK runs in browsers. For server components, you need the Node SDK:

```bash
npm install node-appwrite
```

Create two client factories. The admin client uses an API key for public data:

```ts
// lib/appwrite/server.ts
import { Client, TablesDB, Account } from "node-appwrite";

export async function createAdminClient() {
const client = new Client()
.setEndpoint(process.env.APPWRITE_ENDPOINT)
.setProject(process.env.APPWRITE_PROJECT_ID)
.setKey(process.env.APPWRITE_API_KEY);

return {
tablesDB: new TablesDB(client),
account: new Account(client),
};
}
```

The session client uses the logged-in user's session for protected data:

```ts
import { Client, TablesDB, Account } from "node-appwrite";
import { cookies } from "next/headers";

export async function createSessionClient() {
const client = new Client()
.setEndpoint(process.env.APPWRITE_ENDPOINT)
.setProject(process.env.APPWRITE_PROJECT_ID);

const session = (await cookies()).get("session");
if (session) {
client.setSession(session.value);
}

return {
tablesDB: new TablesDB(client),
account: new Account(client),
};
}
```

The difference matters. Admin client queries return all rows matching your query. Session client queries return only rows the user has permission to access.

# Handling authentication

Login with a server action:

```tsx
// app/login/page.tsx
import { cookies } from "next/headers";
import { redirect } from "next/navigation";
import { createAdminClient } from "@/lib/appwrite/server";

export default function LoginPage() {
async function login(formData: FormData) {
"use server";
const { account } = await createAdminClient();
const session = await account.createEmailPasswordSession(
formData.get("email") as string,
formData.get("password") as string
);

(await cookies()).set("session", session.secret, {
httpOnly: true,
secure: true,
sameSite: "strict",
expires: new Date(session.expire),
});

redirect("/");
}

return (
<form action={login}>
<input name="email" type="email" required />
<input name="password" type="password" required />
<button type="submit">Log in</button>
</form>
);
}
```

Protect routes with a layout:

```tsx
// app/(protected)/layout.tsx
import { redirect } from "next/navigation";
import { createSessionClient } from "@/lib/appwrite/server";

export default async function ProtectedLayout({ children }) {
try {
const { account } = await createSessionClient();
await account.get();
} catch {
redirect("/login");
}

return children;
}
```

# When to skip all of this

Use plain React when:

- Your app lives behind authentication
- Search engines don't need to index it
- You prefer client-side data fetching patterns
- You're building a very simple app that doesn't need server-capabilities

There's nothing wrong with client-side rendering. The mistake is using Next.js and not leveraging what makes it useful.

# Resources

- [Appwrite SSR documentation](/docs/products/auth/server-side-rendering)
- [Next.js App Router documentation](https://nextjs.org/docs/app)
Binary file added static/images/blog/using-nextjs-wrong/cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.