The Nuxt Certification Program by VueSchool is out!

nuxi module

Search and add modules to your Nuxt application with the command line.

Nuxi provides a few utilities to work with Nuxt modules seamlessly.

nuxi module add

Terminal
npx nuxi module add <NAME>
OptionDefaultDescription
NAME-The name of the module to install.

The command lets you install Nuxt modules in your application with no manual work.

When running the command, it will:

  • install the module as a dependency using your package manager
  • add it to your package.json file
  • update your nuxt.config file

Example:

Installing the Pinia module

Terminal
npx nuxi module add pinia
Terminal
npx nuxi module search <QUERY>
OptionDefaultDescription
QUERY-The name of the module to search for.

The command searches for Nuxt modules matching your query that are compatible with your Nuxt version.

Example:

Terminal
npx nuxi module search pinia