Cover Image by @Atinux
Appwrite is a self-hosted solution that provides developers with a set of easy-to-use and integrate REST APIs to manage their core backend needs. This module is made to connect Appwrite SDKs to Nuxt more easily.
First, add nuxt-appwrite dependency to your project
npx nuxi@latest module add appwriteNext, add nuxt-appwrite to the modules section of nuxt.config
export default {
modules: ['nuxt-appwrite'],
appwrite: {
/* module options */
}
}- type:
String - default:
https://cloud.appwrite.io/v1
Appwrite API endpoint (Console -> Project -> Setting -> API Endpoint)
- type:
String - default:
null
Appwrite project ID (Console -> Project -> Setting -> Project ID)
- type:
String - default:
en
Appwrite locale
export default {
modules: [
'nuxt-appwrite'
],
appwrite: {
endpoint: 'https://cloud.appwrite.io/v1',
project: 'nuxt-playground',
locale: 'en'
}
}Using useAppwrite composable:
const { account } = useAppwrite()
try {
const res = await account.get()
console.log(res)
} catch (err) {
console.log(err)
}Currently Not Supported
- Clone this repository
- Install dependencies using
yarn installornpm install - Start development server using
npm run dev
Copyright (c) Herdi Tr. [email protected]