I choose create-add-on-package-ui-helper-libraries as the project for the Octernship
Link - https://github.com/appwrite-octernship/engineering-task-1
After reading the README.md I found I have to implement UI helper libraries which help developers to integrate Appwrite features with less code.
As a beginner to the Appwrite project, I don't know how to start implementing these tasks and where I should start to write my code.
#How to start working on Octernship task( engineering-task-1) ?
7 messages · Page 1 of 1 (latest)
perhaps you can start playing around with the Appwrite SDKs to see how they work and how a UI Library would help https://appwrite.io/docs/sdks#client
How UI Library will help developers to reduce code?
the Appwrite SDK let's you make API calls to Appwrite...when you're building a UI, there are other things you need to add like handing state and whatnot. a UI Library can help reduce some of that boilerplate code. Take a look at Firebase firebase_ui_auth and Firebase UI for Web and compare that to only using the Firebase SDK
Thanks for helping
I looked at firebase_ui_auth and Firebase UI for Web and successfully set it locally reference: https://github.com/firebase/firebaseui-web/tree/master/demo/ with the firebase project, and noticed how the UI reduced some of the boilerplate code and we can rely upon majority on the UI code as compared when we use SDKs.
I also looked at how the Appwrite SDK works i.e. how to make API calls.