Hi all,
There's a way to develope AppWrite Functions with Typescript? I don't know if i can do this with node-appwrite package.
You can use the node-sdk
inside Typescript it has full support for it
Great. How can i test my function before deploy it
What I do, is I extract all my function logic into a function Then I can call the function when testing and the main endpoint will call it when deployed
Good idea. Thank you very much for the help 🙂
Sure thing 👍
[SOLVED] Typescript Functions
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...