Start with Web

Learn how to add Appwrite to your web apps.

1

Create project

Head to the Appwrite Console.

Create project screen

Create project screen

If this is your first time using Appwrite, create an account and create your first project.

Then, under Add a platform, add a Web app. The Hostname should be localhost or the domain on which you're hosting your web app.

Add a platform

Add a platform

You can skip optional steps.

2

Create project

You can install the Appwrite Web SDK using a package manager.

Shell
npm install appwrite@13.0.2

You can also add the Appwrite Web SDK using CDN with a script tag.

HTML
<script src="https://cdn.jsdelivr.net/npm/appwrite@13.0.1"></script>
3

Import Appwrite

Web
import { Client, Account } from 'appwrite';

export const client = new Client();

client
    .setEndpoint('https://cloud.appwrite.io/v1')
    .setProject('<YOUR_PROJECT_ID>'); // Replace with your project ID

export const account = new Account(client);
export { ID } from 'appwrite';
4

Using TypeScript

If you prefer TypeScript, you can import TypeScript models from the Appwrite SDK.

TypeScript
// appwrite.ts

import { Client, Databases, Account } from "appwrite";
// Import type models for Appwrite
import { type Models } from 'appwrite';

const client: Client = new Client();

client
    .setEndpoint('https://cloud.appwrite.io/v1')
    .setProject('<YOUR_PROJECT_ID>'); // Replace with your project ID

export const account: Account = new Account(client);
export const database: Databases = new Databases(client);

// You then use the imported type definitions like this
const authUser: Models.Session = await account.createEmailSession(email, password);
5

Extending TypeScript models

Sometimes you'll need to extend TypeScript models with your own type definitions.

For example, when you fetch a list of documents from a collection, you can define the expected structure of the documents like this.

TypeScript
interface Idea extends Models.Document {
    title: string;
    description: string;
    userId: string;
}

When you fetch documents, you can use this new Idea interface like this.

TypeScript
const response = await database.listDocuments(
    ideasDatabaseId,
    ideasCollectionId,
    [Query.orderDesc("$createdAt"), Query.limit(queryLimit)]
);
const ideas = response.documents as Idea[];
6

All set

The Appwrite SDK works with your favorite Web frameworks.

Learn to use Appwrite by adding authentication to a simple web app.

Learn to use Appwrite by building an idea tracker app.