nuxt-frogger
v0.1.11
Published
Logging and tracing module for Nuxt applications
Maintainers
Readme
🐸 Frogger
The zero-setup logger for Nuxt
Log and trace from anywhere in your Nuxt applications. Server to client, client to server, to external services and back again. Install Frogger - add it as a module, and it just works. Automatically batches and sends logs to the server, storing them in formatted json files. No matter where you make a log, you'll find it in the same place.
Installation
Automatic Installation
To install and register the latest version of Frogger, navigate to your Nuxt project and run the following command:
pnpm:
pnpm dlx nuxi@latest module add nuxt-froggernpm:
npx nuxi@latest module add nuxt-froggerManual Installation
Does the command above not work? You can install Frogger and register it manually:
pnpm:
pnpm add nuxt-froggernpm:
npm install nuxt-froggerRegister the Module
Add 'nuxt-frogger' to modules in your nuxt.config.ts file:
export default defineNuxtConfig({
modules: [
'nuxt-frogger'
]
})