Gathering detailed insights and metrics for nuxt-appwrite
Gathering detailed insights and metrics for nuxt-appwrite
Gathering detailed insights and metrics for nuxt-appwrite
Gathering detailed insights and metrics for nuxt-appwrite
npm install nuxt-appwrite
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
58 Stars
172 Commits
6 Forks
2 Watching
13 Branches
2 Contributors
Updated on 11 Oct 2024
TypeScript (69.61%)
Vue (23.41%)
JavaScript (6.98%)
Cumulative downloads
Total Downloads
Last day
-40%
12
Compared to previous day
Last week
-10%
99
Compared to previous week
Last month
-8.7%
420
Compared to previous month
Last year
87.6%
5,785
Compared to previous year
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
1npx nuxi@latest module add appwrite
Next, add nuxt-appwrite
to the modules
section of nuxt.config
1export default { 2 modules: ['nuxt-appwrite'], 3 appwrite: { 4 /* module options */ 5 } 6}
endpoint
String
https://cloud.appwrite.io/v1
Appwrite API endpoint (Console -> Project -> Setting -> API Endpoint)
project
String
null
Appwrite project ID (Console -> Project -> Setting -> Project ID)
1export default { 2 modules: [ 3 'nuxt-appwrite' 4 ], 5 appwrite: { 6 endpoint: 'https://cloud.appwrite.io/v1', 7 project: 'nuxt-playground', 8 } 9}
Using useAppwrite
composable:
1const { account } = useAppwrite() 2try { 3 const res = await account.get() 4 console.log(res) 5} catch (err) { 6 console.log(err) 7}
Currently Not Supported
yarn install
or npm install
npm run dev
Copyright (c) Herdi Tr. iam@icm.hrdtr.dev
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
7 existing vulnerabilities detected
Details
Reason
Found 4/20 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More