0.0.2 • Published 1 year ago

nuxt-boot v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

nuxt-boot

npm version npm downloads License Nuxt

Boot Nuxt

Features

  •  Foo
  • 🚠  Bar
  • 🌲  Baz

Quick Setup

  1. Add nuxt-boot dependency to your project
# Using pnpm
pnpm add -D nuxt-boot

# Using yarn
yarn add --dev nuxt-boot

# Using npm
npm install --save-dev nuxt-boot
  1. Add nuxt-boot to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    'nuxt-boot'
  ]
})

That's it! You can now use My Module in your Nuxt app ✨

Development

# Install dependencies
pnpm install

# Generate type stubs
pnpm run dev:prepare

# Develop with the playground
pnpm run dev

# Build the playground
pnpm run dev:build

# Run ESLint
pnpm run lint

# Run Vitest
pnpm run test
pnpm run test:watch

# Release new version
pnpm run release