You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
⚠️DEPRECATED: This SDK is deprecated. Please use the Appwrite Node.js SDK with Deno instead.
🚨 Migration Notice
This Deno-specific SDK is now deprecated. Thanks to Deno’s excellent Node.js compatibility, you can now use the official Appwrite Node.js SDK directly in your Deno applications.
Why migrate?
Better maintenance: The Node.js SDK is actively maintained and receives updates faster
Feature parity: Access to all the latest Appwrite features
Simplified ecosystem: One less SDK to maintain
Native compatibility: Deno’s built-in Node.js compatibility makes this seamless
How to migrate
Instead of using this deprecated SDK, install and use the Appwrite Node.js SDK:
import*assdkfrom"npm:node-appwrite";
That’s it! The API is identical, so your existing code will work with minimal changes.
Initialize your SDK with your Appwrite server API endpoint and project ID which can be found in your project settings page and your new API secret Key from project’s API keys section.
letclient=newsdk.Client();client.setEndpoint('https://[HOSTNAME_OR_IP]/v1')// Your API Endpoint.setProject('5df5acd0d48c2')// Your project ID.setKey('919c2d18fb5d4...a2ae413da83346ad2')// Your secret API key.setSelfSigned()// Use only on dev mode with a self-signed SSL cert;
Make your first request
Once your SDK object is set, create any of the Appwrite service objects and choose any request to send. Full documentation for any service method you would like to use can be found in your SDK documentation or in the API References section.
import*assdkfrom"https://deno.land/x/appwrite/mod.ts";letclient=newsdk.Client();letusers=newsdk.Users(client);client.setEndpoint('https://[HOSTNAME_OR_IP]/v1')// Your API Endpoint.setProject('5df5acd0d48c2')// Your project ID.setKey('919c2d18fb5d4...a2ae413da83346ad2')// Your secret API key.setSelfSigned()// Use only on dev mode with a self-signed SSL cert;letuser=awaitusers.create(ID.unique(),"email@example.com","+123456789","password","Walter O'Brien");console.log(user);
Error Handling
The Appwrite Deno SDK raises AppwriteException object with message, code and response properties. You can handle any errors by catching AppwriteException and present the message to the user or handle it yourself based on the provided error information. Below is an example.
This library is auto-generated by Appwrite custom SDK Generator. To learn more about how you can help us improve this SDK, please check the contribution guide before sending a pull-request.