mirror of
https://github.com/appwrite/appwrite
synced 2026-05-12 19:48:41 +00:00
539 B
539 B
import { Client, Users } from "appwrite";
const client = new Client();
const users = new Users(client);
client .setEndpoint('https://[HOSTNAME_OR_IP]/v1') // Your API Endpoint .setProject('5df5acd0d48c2') // Your project ID ;
const promise = users.createScryptModifiedUser('[USER_ID]', 'email@example.com', 'password', '[PASSWORD_SALT]', '[PASSWORD_SALT_SEPARATOR]', '[PASSWORD_SIGNER_KEY]');
promise.then(function (response) { console.log(response); // Success }, function (error) { console.log(error); // Failure });