Files

430 B

import { Client, Account } from "https://deno.land/x/appwrite/mod.ts";

const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>'); // Your project ID

const account = new Account(client);

const response = await account.create( '<USER_ID>', // userId 'email@example.com', // email '', // password '' // name (optional) );