Wide Angle Analytics module for Nuxt (Nuxt3).
Find a file
2023-05-14 15:28:02 +00:00
playground Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
src Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
test Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
.editorconfig Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
.eslintignore Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
.eslintrc Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
.gitignore Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
.npmrc Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
.nuxtrc Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
LICENSE Apache 2.0 license 2023-05-14 15:28:02 +00:00
package-lock.json Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
package.json Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
README.md Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00
tsconfig.json Scaffolding for Nuxt module 2023-05-14 15:25:44 +00:00

My Module

npm version npm downloads License Nuxt

My new Nuxt module for doing amazing things.

Features

  • ⛰  Foo
  • 🚠  Bar
  • 🌲  Baz

Quick Setup

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

# Using yarn
yarn add --dev wideangle

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

That's it! You can now use My Module 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