Official and community Nuxt modules united on modules.nuxtjs.org
- If you feel a module is missing, please create a new issue
- If some meta is wrong, feel free directly opening a pull request
yarn sync <name> <repo>Example: yarn sync tailwindcss nuxt-community/tailwindcss-module
To sync with a branch different than master, suffix the repo with #repo-branch, example: yarn sync tailwindcss nuxt-community/tailwindcss-module#dev
yarn syncyarn build
You can use the @nuxt/modules package by installing it in your project:
npm install @nuxt/modules
# Or yarn add @nuxt/modulesThen you can directly import the list of modules:
const modules = require('@nuxt/modules')
// modules is an array of objects
// See https://unpkg.com/@nuxt/modules/dist/modules.jsonStart Nuxt in development:
yarn devThen visit http://localhost:3000.
In development, the npm downloads and GitHub stars will be mocked.
Create a personnal GitHub token (no scope selected) and add it to .env:
# .env
GITHUB_TOKEN=<my-generated-github-token>Generate the website:
yarn generate
Start the production website:
yarn startMIT Nuxt.js Team