new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Nuxt · Getting started · all subjects

installation/development-server

9 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

Development server URL

The development server runs at http://localhost:3000 by default.

Start development server with yarn

Run `yarn dev --open` to start the Nuxt app in development mode and automatically open a browser window.

Start development server with pnpm

Run `pnpm dev -o` to start the Nuxt app in development mode and automatically open a browser window.

Start development server with bun

Run `bun run dev -o` to start the Nuxt app in development mode and automatically open a browser window. To use the Bun runtime during development, run `bun --bun run dev -o`.

Start development server with deno

Run `deno run dev -o` to start the Nuxt app in development mode and automatically open a browser window.

Explore generated files with Nuxt DevTools

You can explore the files Nuxt generates by opening the Nuxt DevTools in development mode and navigating to the Virtual Files tab.

.nuxt directory is generated in development

Nuxt uses the .nuxt/ directory in development to generate your Vue application. The whole directory will be re-created when running `nuxt dev`, so you should not manually edit any files inside it.

Server plugins execute once when Nitro starts

Nitro plugins are executed only once when the server starts from the /server/plugins directory. In a serverless environment, the server boots on each incoming request, and so do the Nitro plugins, but they are not awaited.

Server plugins capabilities

Nitro plugins can capture and handle application-wide errors, register hooks that execute when Nitro shuts down, and register hooks for request lifecycle events such as modifying responses.

Give your agent this brain