The ModuleContainer class
- Source: core/module.js
All modules will be called within context of ModuleContainer instance.
Tapable plugins
We can register hooks on certain life cycle events.
nuxt.moduleContainer.plugin('ready', async moduleContainer => {
// Do this after all modules where ready
})
Inside modules context we can use this instead:
this.plugin('ready', async moduleContainer => {
// Do this after all modules where ready
})
| Plugin | Arguments | When |
|---|---|---|
ready |
moduleContainer | All modules in nuxt.config.js has been initialized |
Methods
addVendor (vendor)
Deprecated as vendor isn't used anymore
Adds to options.build.vendor and apply unique filter.
addTemplate (template)
-
template:
StringorObject-
src -
options -
fileName
-
Renders given template using lodash template during build into project buildDir (.nuxt).
If fileName is not provided or template is string, target file name defaults to [dirName].[fileName].[pathHash].[ext].
This method returns final { dst, src, options } object.
addPlugin (template)
-
template: Object properties (
src,options,fileName,mode).
Registers a plugin using addTemplate and prepends it it to plugins[] array.
this.addPlugin({
src: path.resolve(__dirname, 'templates/foo.js'),
fileName: 'foo.server.js' // [optional] only include in server bundle
options: moduleOptions
})
Note: You can use mode or .client and .server modifiers with fileName option to use plugin only in client or server side. (See plugins for all available options)
If you choose to specify a fileName, you can configure a custom path for the fileName too, so you can choose the folder structure inside .nuxt folder in order to prevent name collisioning:
{
fileName: path.join('folder', 'foo.client.js'), // will result in `.nuxt/folder/foo.client.js`
}
addServerMiddleware (middleware)
Pushes middleware into options.serverMiddleware .
extendBuild (fn)
Allows easily extending webpack build config by chaining options.build.extend function.
extendRoutes (fn)
Allows easily extending routes by chaining options.build.extendRoutes function.
addModule (moduleOpts, requireOnce)
Async function
Registers a module. moduleOpts can be a string or an array ([src, options]). If requireOnce is true and the resolved module exports meta, it prevents registering same module twice.
requireModule (moduleOpts)
Async function
Is a shortcut for addModule(moduleOpts, true)
Hooks
We can register hooks on certain life cycle events.
| Hook | Arguments | When |
|---|---|---|
modules:before |
(moduleContainer, options) | Called before creating ModuleContainer class, useful to overload methods and options. |
modules:done |
(moduleContainer) | Called when all modules have been loaded. |
Leoš Literák
Trizotti
Clément Ollivier
Sébastien Chopin
Marcello Bachechi
Rodolphe
Thomas Underwood
Shek Evgeniy
felipesuri
Lukasz Formela
Hugo Torzuoli
Sylvain Marroufin
Kareem Dabbeet
tramplay
Daniel Roe
verebelyicsaba
Adam
Nate Butler
Sandra Rodgers
Arpit Patidar
Matthew Kuehn
Steven DUBOIS
Travis Lindsey
syagawa
Maxime
かる
Al Power
Florent Delerue
quanghm
José Manuel Casani Guerra
Unai Mengual
kazuya kawaguchi
Michael Lynch
Tomachi
pooya parsa
Meir Roth
Brett
Adam Miedema
Thomas Bnt
Kazuki Furukawa
Anthony Ruelle
Christophe Carvalho Vilas-Boas
Roman Harmyder