Make your own, for your team or the whole community.
Make your own, for your team or the whole community.
Number of Nuxt downloads
over the last 30 days
Number of Vue downloads
over the last 30 days
16 million downloads
2 million downloads
Number of Nuxt Modules downloads
over the last 30 days
1 person installed
14 million modules
Nuxt projects use
7 modules on average
a.k.a. lihbr
Beginner friendly~
Modules are Nuxt.js extensions which can extend its core functionality and add endless integrations.
Nuxt Modules are registered inside your Nuxt config file:
import thirdModule from "third-module";
export default defineNuxtConfig({
modules: [
"@vite-pwa/nuxt",
"~/modules/my-module",
thirdModule,
[
"@nuxtjs/prismic",
{ endpoint: "example" }
],
],
pwa: { writePlugin: false }
});
Especially with so many modules already out there?
Nuxt modules can do pretty much anything.
-^
Abtract code from your different projects and share it reliably.
Things that I abstracted from my projects:
Facilitate integration with the tools you use.
placeholder
placeholder
Tailwind CSS
Sentry
Facilitate integration with the (new or niche) tools you use.
-^
Craft modules for them, why not?
Concretely~
npx nuxi@latest init -t module my-module
Then, we’ll install dependencies…
nuxi init
@nuxt/kit
is a set of helpers to develop Nuxt modulesdefineNuxtModule
from @nuxt/kit
npx nuxi@latest init -t module-devtools my-module-devtools
Then, we’ll again install dependencies…
Many recipes are documented: nuxt.com/docs/guide/going-further/modules
Being familiar with Nuxt module structure allows to:
import { defineNuxtModule } from "@nuxt/kit";
export default defineNuxtModule({
meta: { /* ... */ },
defaults: { /* ... */ },
setup(options, nuxt) {
/* ... */
// Inject options via virtual template
nuxt.options.alias['#color-mode-options'] = addTemplate({
filename: 'color-mode-options.mjs',
getContents: () => Object.entries(options).map(([key, value]) =>
`export const ${key} = ${JSON.stringify(value, null, 2)}
`).join('\n')
}).dst
/* ... */
},
});
Being familiar with Nuxt module structure allows to:
All community modules -> nuxt.com/modules
Make your own, for your team or the whole community.
Everything from this talk & more:
Twitter:
Mastodon: