The only nuxt module that makes nuxt devs life simpler for doing amazing things.
Highlight some of the features your module provide here
- Connect to Prisma with ease
- view prisma studio in nuxt devtools
- Add
@naveeng2402/nuxt-prismadependency to your project
# Using pnpm
pnpm add -D @naveeng2402/nuxt-prisma
# Using yarn
yarn add --dev @naveeng2402/nuxt-prisma
# Using npm
npm install --save-dev @naveeng2402/nuxt-prisma- Add
@naveeng2402/nuxt-prismato themodulessection ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'@naveeng2402/nuxt-prisma'
]
})- Initialize
prismaas you would
npx prisma initThat's it! You can now use Nuxt Prisma in your Nuxt app ✨
# 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