nuxt-zeus
v1.0.5
Published
Nuxt graphql module of @lenne.tech
Downloads
2
Readme
nuxt-zeus
Nuxt 3 module for https://github.com/graphql-editor/graphql-zeus 🚀
Features
- 🚀 Use zeus in nuxt app
- 🚀 Some helper functions for better usage
- 🚀 Completely typed
Quick Setup
- Add
nuxt-zeus
dependency to your project
# Using pnpm
pnpm add -D nuxt-zeus
# Using yarn
yarn add --dev nuxt-zeus
# Using npm
npm install --save-dev nuxt-zeus
- Add
nuxt-zeus
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-zeus'
]
})
That's it! You can now use nuxt-zeus in your Nuxt app ✨
Development
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release