mirror of
https://github.com/appwrite/appwrite
synced 2026-05-16 21:48:45 +00:00
409 B
409 B
import { Client, Account } from "appwrite";
const client = new Client();
const account = new Account(client);
client .setEndpoint('https://[HOSTNAME_OR_IP]/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ;
const promise = account.get();
promise.then(function (response) { console.log(response); // Success }, function (error) { console.log(error); // Failure });