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 appwrite
Next, add nuxt-appwrite to the modules section of nuxt.config
export default {
modules: ['nuxt-appwrite'],
appwrite: {
/* module options */
}
}
endpointStringhttps://cloud.appwrite.io/v1Appwrite API endpoint (Console -> Project -> Setting -> API Endpoint)
projectStringnullAppwrite project ID (Console -> Project -> Setting -> Project ID)
locale - optionalStringenAppwrite 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
yarn install or npm installnpm run devCopyright (c) Herdi Tr. [email protected]