Is it possible to host node Js backend on Appwrite cloud. I have tried to deploy in Vercel
- 0
- Self Hosted
- Web
Is it possible to host node js backend on Appwrite cloud. I have tried to deploy in vercel but my api takes more then 5secs and for vercel customizing timing for functions is not available in free trial.
You can't host a whole custom nodejs backend in appwrite cloud
Instead use appwrite functions to implement custom code and features with appwrite
but I think it is not possible edit custom functions
Yo can create and edit and customise functions
@HUSKY What you can do is this:
In a nodejs backend, you will have routes like /post
, /getAll
, etc. You can replicate this behaviour in appwrite by creating functions for each of these endpoints, and execute the functions accordingly.
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...