Docs
Skip to content

Quick start

Start with Deno_

Dive into our step-by-step guide on integrating Appwrite with your Deno server backend application. Get your backend up and running quickly with this tutorial.

2 min read

Raw

Learn how to setup your first Deno project powered by Appwrite.

1. Create project

Head to the Appwrite Console.

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

Create project screen
Create project screen

Then, under Integrate with your server, add an API Key with the following scopes.

Create project screen
Create project screen

Category Required scopesPurpose
Databasedatabases.writeAllows API key to create, update, and delete databases.
tables.writeAllows API key to create, update, and delete tables.
columns.writeAllows API key to create, update, and delete columns.
rows.readAllows API key to read rows.
rows.writeAllows API key to create, update, and delete rows.

Other scopes are optional.

2. Create Deno project

Create a Deno CLI application.

Bash
mkdir my-app
cd my-app
echo "console.log('Hello, Deno!');" > mod.ts

3. Install Appwrite

Install the Appwrite SDK using npm specifiers at the top of your file.

Plain text
// import all as sdk
import * as sdk from "npm:node-appwrite";
// import only what you need
import { Client, ... other imports } from "npm:node-appwrite";

4. Import Appwrite

Find your project ID in the Settings page. Also, click on the View API Keys button to find the API key that was created earlier.

Project settings screen
Project settings screen

Open mod.ts in your IDE and initialize the Appwrite Client. Replace <PROJECT_ID> with your project ID and <YOUR_API_KEY> with your API key.

TypeScript
import { Client, ID, TablesDB, Models } from "npm:node-appwrite";
const client: Client = new Client();
client
.setEndpoint("https://<REGION>.cloud.appwrite.io/v1")
.setProject("<PROJECT_ID>")
.setKey("<YOUR_API_KEY>");

5. Initialize database

Once the Appwrite Client is initialized, create a function to configure a todo table.

TypeScript
const tablesDB: TablesDB = new TablesDB(client);
var todoDatabase: Models.Database;
var todoTable: Models.Table;
interface Todo {
title: string;
description: string;
isComplete?: boolean;
}
async function prepareDatabase(): Promise<void> {
todoDatabase = await tablesDB.create({
databaseId: ID.unique(),
name: 'TodosDB'
});
todoTable = await tablesDB.createTable({
databaseId: todoDatabase.$id,
tableId: ID.unique(),
name: 'Todos'
});
await tablesDB.createVarcharColumn({
databaseId: todoDatabase.$id,
tableId: todoTable.$id,
key: 'title',
size: 255,
required: true
});
await tablesDB.createTextColumn({
databaseId: todoDatabase.$id,
tableId: todoTable.$id,
key: 'description',
required: false,
xdefault: 'This is a test description'
});
await tablesDB.createBooleanColumn({
databaseId: todoDatabase.$id,
tableId: todoTable.$id,
key: 'isComplete',
required: true
});
}

6. Add rows

Create a function to add some mock data into your new table.

TypeScript
async function seedDatabase(): Promise<void> {
const testTodo1: Todo = {
title: 'Buy apples',
description: 'At least 2KGs',
isComplete: true
};
const testTodo2: Todo = {
title: 'Wash the apples',
isComplete: true
};
const testTodo3: Todo = {
title: 'Cut the apples',
description: 'Don\'t forget to pack them in a box',
isComplete: false
};
await tablesDB.createRow({
databaseId: todoDatabase.$id,
tableId: todoTable.$id,
rowId: ID.unique(),
data: testTodo1
});
await tablesDB.createRow({
databaseId: todoDatabase.$id,
tableId: todoTable.$id,
rowId: ID.unique(),
data: testTodo2
});
await tablesDB.createRow({
databaseId: todoDatabase.$id,
tableId: todoTable.$id,
rowId: ID.unique(),
data: testTodo3
});
}

7. Retrieve rows

Create a function to retrieve the mock todo data and a function to execute the requests in order. Run the functions to by calling runAllTasks();.

TypeScript
async function getTodos(): Promise<void> {
const todos = await tablesDB.listRows({
databaseId: todoDatabase.$id,
tableId: todoTable.$id
});
todos.rows.forEach((todo: Todo) => {
console.log(`Title: ${todo.title}\nDescription: ${todo.description}\nIs Todo Complete: ${todo.isComplete}\n\n`);
});
}
async function runAllTasks(): Promise<void> {
await prepareDatabase();
await seedDatabase();
await getTodos();
}
runAllTasks();

8. All set

Run your project with deno mod.ts and view the response in your console.

Was this page helpful?

Share what worked or what we should fix. Once approved, our agents automatically apply suggested updates to the docs.