Appwrite provides SDK libraries for major programming languages and platforms so you don't have to write code for interacting with our API protocols from scratch.
We're always working on improving and extending the current stack of available platforms and SDKs, listed below is a list of official libraries the Appwrite team is maintaining.
Client
Client libraries for integrating with Appwrite to build client-based applications and websites. Read one of the many quick starts guides for your framework of choice to start building your first application.
Platform | GitHub Repository | ||
Web SDK 16.0.1 | appwrite/sdk-for-web | ||
Flutter SDK 13.0.0 | appwrite/sdk-for-flutter | ||
React Native SDK 0.5.0 | appwrite/sdk-for-react-native | beta | |
Apple SDK 7.0.0 | appwrite/sdk-for-apple | ||
Android SDK 6.0.0 | appwrite/sdk-for-android |
Server
Server libraries for integrating with Appwrite to build server side integrations or use inside your Appwrite Functions. Read one of the many quick starts guides for your language/runtime of choice to start building your first server integration.
Platform | GitHub Repository | ||
Node.js SDK 14.1.0 | appwrite/sdk-for-node | ||
Python SDK 6.1.0 | appwrite/sdk-for-python | ||
Dart SDK 12.1.0 | appwrite/sdk-for-dart | ||
PHP SDK 12.1.0 | appwrite/sdk-for-php | ||
Ruby SDK 12.1.0 | appwrite/sdk-for-ruby | ||
.NET SDK 0.10.1 | appwrite/sdk-for-dotnet | beta | |
Deno SDK 12.1.0 | appwrite/sdk-for-deno | ||
Go SDK 0.2.0 | appwrite/sdk-for-go | beta | |
Swift SDK 6.1.0 | appwrite/sdk-for-swift | ||
Kotlin SDK 6.1.0 | appwrite/sdk-for-kotlin |
If you would like to help us extend our platforms and SDKs stack, you are more than welcome to contact us or contribute to the Appwrite SDK Generator project GitHub repository and read our contribution guide.
Protocols
We are always looking to add new SDKs to our platform. If the SDK you are looking for is still missing, labeled as beta or experimental, or you simply do not want to integrate with an SDK, you can always integrate with Appwrite directly using any standard HTTP, GraphQL, or WebSocket clients and the relevant Appwrite protocol.
Appwrite supports multiple API protocols for maximum flexibility and developer convenience. You can learn more about how to integrate directly with them using one of the following available guides:
Utility classes
Appwrite's SDKs provide useful utility classes to make your development experience easier. Use these classes and methods to reduce guess work and get better code suggestions in your IDE.
IDs
Appwrite has utility classes to help you handle IDs. These generate the correct ID format to be passed to the Appwrite APIs.
import { Client, Account } from "appwrite";
// Generate a unique ID
ID.unique()
// Generate a custom ID
ID.custom("my-custom-id")
const sdk = require('node-appwrite');
// Generate a unique ID
sdk.ID.unique()
// Generate a custom ID
sdk.ID.custom("my-custom-id")
Appwrite generates unique IDs that are both random and ordered. Appwrite IDs combine a timestamp prefix based on microseconds and a random UID string, formatted as <timestamp_hex><uid_hex>.
Enums
Appwrite has enumeration classes for predefined strings used different parameters used for the Appwrite APIs.
These enums are available for authenticator type, name, OAuth provider, password hash types, browsers, authentication factors, index types, credit cards, image gravity, image format, relationship types, SMTP encryption, Function runtime, messaging provider type, compression algorithms, execution methods, and country flags.
You can discover the available enums in each SDK at the source.
Platform | Enums | ||
Web SDK 14.0.1 | appwrite/sdk-for-web | ||
Flutter SDK 12.0.3 | appwrite/sdk-for-flutter | ||
React Native SDK 0.1.0 | appwrite/sdk-for-react-native | beta | |
Apple SDK 5.0.0 | appwrite/sdk-for-apple | ||
Android SDK 5.1.0 | appwrite/sdk-for-android |
You can discover the available enums in each SDK at the source.
Platform | Enums | ||
Node.js SDK 14.1.0 | appwrite/sdk-for-node | ||
Python SDK 6.1.0 | appwrite/sdk-for-python | ||
Dart SDK 12.1.0 | appwrite/sdk-for-dart | ||
PHP SDK 12.1.0 | appwrite/sdk-for-php | ||
Ruby SDK 12.1.0 | appwrite/sdk-for-ruby | ||
.NET SDK 0.10.1 | appwrite/sdk-for-dotnet | ||
Deno SDK 12.1.0 | appwrite/sdk-for-deno | ||
Go SDK 0.2.0 | appwrite/sdk-for-go | beta | |
Swift SDK 6.1.0 | appwrite/sdk-for-swift | ||
Kotlin SDK 6.1.0 | appwrite/sdk-for-kotlin |
Queries and permissions
Appwrite has utility classes for queries and permissions. You can learn more about query utility classes and permissions utility classes in their own pages.
File I/O
Depending on your platform, you will also need some helpers to interface with system I/O. Learn more about storage input file classes.
Community
If you have created your own framework or any other technology specific integration and would like us to list it here please contact us.
If you would like to help us expand Appwrite's list of SDKs, you can contribute to Appwrite's SDK Generator project on GitHub and read our contribution guide.