nuxt/nuxt repository.
Monorepo Guide
packages/kit: Toolkit for authoring Nuxt modules, published as@nuxt/kit.packages/nuxt: The core of Nuxt, published asnuxt.packages/schema: Cross-version Nuxt typedefs and defaults, published as@nuxt/schema.packages/rspack: The Rspack bundler for Nuxt, published as@nuxt/rspack-builder.packages/vite: The Vite bundler for Nuxt, published as@nuxt/vite-builder.packages/webpack: The webpack bundler for Nuxt, published as@nuxt/webpack-builder.
Setup
To contribute to Nuxt, you need to set up a local environment.-
Fork the
nuxt/nuxtrepository to your own GitHub account and then clone it to your local device. - Ensure using the latest Node.js
-
Enable Corepack to have
pnpmandyarn -
Run
pnpm install --frozen-lockfileto Install the dependencies with pnpm:If you are adding a dependency, please usepnpm add. Thepnpm-lock.yamlfile is the source of truth for all Nuxt dependencies. -
Activate the passive development system
-
Check out a branch where you can work and commit your changes:
Playground
While working on a pull request, you will likely want to check if your changes are working correctly. You can modify the example app inplayground/, and run:
Testing
Every new feature should have a corresponding unit test (if possible). Thetest/ directory in this repository is currently a work in progress, but do your best to create a new test following the example of what’s already there.
Before creating a PR or marking it as ready-to-review, ensure that all tests pass by running:
Linting
You might have noticed already that we use ESLint to enforce a coding standard. Before committing your changes, to verify that the code style is correct, run:You can use
pnpm lint --fix to fix most of the style changes. If there are still errors left, you must correct them manually.Documentation
If you are adding a new feature or refactoring or changing the behavior of Nuxt in any other manner, you’ll likely want to document the changes. Please include any changes to the docs in the same PR. You don’t have to write documentation up on the first commit (but please do so as soon as your pull request is mature enough).Final Checklist
When submitting your PR, there is a simple template that you have to fill out. Please tick all appropriate “answers” in the checklists.Documentation Guide
If you spot an area where we can improve documentation or error messages, please do open a PR - even if it’s to fix a typo!Quick Edits
If you spot a typo or want to rephrase a sentence, you can click on the Edit this page link located on the right aside in the Community section. Make the change directly in the GitHub interface and open a Pull Request.Longer Edits
The documentation content is inside thedocs/ directory of the nuxt/nuxt repository and written in markdown.
To preview the docs locally, follow the steps on nuxt/nuxt.com repository.
We recommend that you install the MDC extension for VS Code.
Linting Docs
Documentation is linted using MarkdownLint and case police to keep the documentation cohesive.You can also run
pnpm lint:docs:fix to highlight and resolve any lint issues.