Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 461 Bytes

create.md

File metadata and controls

18 lines (13 loc) · 461 Bytes

import { Client, Account } from "@appwrite.io/console";

const client = new Client();

const account = new Account(client);

client .setEndpoint('https://cloud.appwrite.io/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ;

const promise = account.create('[USER_ID]', 'email@example.com', '');

promise.then(function (response) { console.log(response); // Success }, function (error) { console.log(error); // Failure });