appwrite/docs/sdks/web
Chirag Aggarwal 132b8f8234 chore: remove
2025-07-23 21:01:18 +05:30
..
CHANGELOG.md chore: remove 2025-07-23 21:01:18 +05:30
GETTING_STARTED.md Update web GETTING_STARTED.md 2023-10-24 09:12:13 +05:30
README.md Changed naming conventions from JS to Web 2020-12-24 00:39:48 +02:00

Getting Started

Initialise the Appwrite SDK in your code, and setup your API credentials:


// Init your Web SDK
var appwrite = new Appwrite();

appwrite
    .setEndpoint('http://localhost/v1') // Set only when using self-hosted solution
    .setProject('455x34dfkj') // Your Appwrite Project UID
;