You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**This SDK is compatible with Appwrite server version 0.8.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-node/releases).**
9
+
**This SDK is compatible with Appwrite server version 0.9.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-node/releases).**
9
10
10
11
> This is the Node.js SDK for integrating with Appwrite from your Node.js server-side code.
11
12
If you're looking to integrate from the browser, you should check [appwrite/sdk-for-web](https://github.com/appwrite/sdk-for-web)
12
13
13
-
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way.
14
-
Use the Node.js SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools.
15
-
For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
14
+
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Node.js SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
Initialize your SDK code with your project ID which can be found in your project settings page and your new API secret Key project API keys section.
30
+
Initialize your SDK with your Appwrite server API endpoint and project ID which can be found in your project settings page and your new API secret Key project API keys section.
32
31
33
32
```js
34
33
constsdk=require('node-appwrite');
@@ -44,7 +43,7 @@ client
44
43
```
45
44
46
45
### Make Your First Request
47
-
Once your SDK object is set, create any of the Appwrite service objects and choose any request to send. Full documentation for any service method you would like to use can be found in your SDK documentation or in the API References section.
46
+
Once your SDK object is set, create any of the Appwrite service objects and choose any request to send. Full documentation for any service method you would like to use can be found in your SDK documentation or in the [API References](https://appwrite.io/docs) section.
48
47
49
48
```js
50
49
let users =newsdk.Users(client);
@@ -95,7 +94,7 @@ try {
95
94
```
96
95
97
96
### Learn more
98
-
You can use followng resources to learn more and get help
97
+
You can use following resources to learn more and get help
99
98
- 🚀 [Getting Started Tutorial](https://appwrite.io/docs/getting-started-for-server)
0 commit comments