Make your own, for your team or the whole community.
Make your own, for your team or the whole community.
Vue 3
Nuxt 3
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 {
modules: [
"@nuxtjs/pwa",
"~/modules/my-module",
thirdModule,
[
"@nuxtjs/prismic",
{ endpoint: "https://example.cdn.prismic.io/api/v2" }
],
],
pwa: { icon: false }
};
Nuxt 3 modules:
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 project:
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?
What’s new:
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
Hooks are windows to Nuxt internals to which you can hook to.
-^
They allow you to get information about, and alter Nuxt behaviors.
They are a bit advanced, but really what make Nuxt modules capable of anything.
import { defineNuxtModule } from "@nuxt/kit";
export default defineNuxtModule({
meta: { /* ... */ },
defaults: { /* ... */ },
hooks: {
"pages:extend": (pages) => {
console.info(`Discovered ${pages.length} pages`);
},
},
setup(options, nuxt) {
/* ... */
nuxt.hook("pages:extend", (pages) => {
console.info(`Discovered ${pages.length} pages`);
});
},
});
setup
function@nuxt/kit
provides a lot of utilities for common tasksruntime
directory holds assets made available by the modulenpm publish
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 -> modules.nuxtjs.org
Make your own, for your team or the whole community.
Everything from this talk & more:
Twitter: