
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fixβa new CLI tool that turns CVE alerts into safe, automated upgrades.
vite-plugin-pages
Advanced tools
File system based routing for Vue 3 / React / Solid applications using Vite
π¨Important Notesπ¨
We recommend that Vue users use unplugin-vue-router instead of this plugin.
unplugin-vue-router is a unplugin library created by @posva, same auther as vue-router. It provide almost same feature as vite-plugin-pages but better intergration with vue-router, include some cool feature like auto generate route types base on your route files to provide autocomplete for vue-router.
npm install -D vite-plugin-pages
npm install vue-router
since v0.19.0 we only support react-router v6, if you are using react-router v5 use v0.18.2.
npm install -D vite-plugin-pages
npm install react-router react-router-dom
npm install -D vite-plugin-pages
npm install @solidjs/router
Add to your vite.config.js
:
import Pages from 'vite-plugin-pages'
export default {
plugins: [
// ...
Pages(),
],
}
By default a page is a Vue component exported from a .vue
or .js
file in the
src/pages
directory.
You can access the generated routes by importing the ~pages
module in your application.
import { createRouter } from 'vue-router'
import routes from '~pages'
const router = createRouter({
// ...
routes,
})
Type
// vite-env.d.ts
/// <reference types="vite-plugin-pages/client" />
experimental
import { StrictMode, Suspense } from 'react'
import { createRoot } from 'react-dom/client'
import {
BrowserRouter,
useRoutes,
} from 'react-router-dom'
import routes from '~react-pages'
function App() {
return (
<Suspense fallback={<p>Loading...</p>}>
{useRoutes(routes)}
</Suspense>
)
}
const app = createRoot(document.getElementById('root')!)
app.render(
<StrictMode>
<BrowserRouter>
<App />
</BrowserRouter>
</StrictMode>,
)
Type
// vite-env.d.ts
/// <reference types="vite-plugin-pages/client-react" />
This guide is for solid-router v0.10.x and newer. For older versions see the migration guide.
import { Router } from '@solidjs/router'
import { render } from 'solid-js/web'
import routes from '~solid-pages'
render(
() => {
return (
<Router
root={props => (
<Suspense>
{props.children}
</Suspense>
)}
>
{routes}
</Router>
)
},
document.getElementById('root') as HTMLElement,
)
Remember to check the dirs
is set to the correct routes directory in vite.config.ts
:
import { defineConfig } from 'vite'
import Pages from 'vite-plugin-pages'
import solidPlugin from 'vite-plugin-solid'
export default defineConfig({
plugins: [
Pages({
dirs: ['src/pages'],
}),
solidPlugin()
],
})
Type
// vite-env.d.ts
/// <reference types="vite-plugin-pages/client-solid" />
To use custom configuration, pass your options to Pages when instantiating the plugin:
// vite.config.js
import Pages from 'vite-plugin-pages'
export default {
plugins: [
Pages({
dirs: 'src/views',
}),
],
}
string | (string | PageOptions)[]
'src/pages'
Paths to the pages directory. Supports globs.
Can be:
/
/
PageOptions
, Check below πinterface PageOptions {
/**
* Page base directory.
* @default 'src/pages'
*/
dir: string
/**
* Page base route.
*/
baseRoute: string
/**
* Page file pattern.
* @example `**\/*.page.vue`
*/
filePattern?: string
}
Specifying a glob or an array of PageOptions
allow you to use multiple
pages folder, and specify the base route to append to the path and the route
name.
Additionally, you can specify a filePattern
to filter the files that will be used as pages.
Folder structure
src/
βββ features/
β βββ dashboard/
β βββ code/
β βββ components/
β βββ pages/
βββ admin/
β βββ code/
β βββ components/
β βββ pages/
βββ pages/
Config
// vite.config.js
export default {
plugins: [
Pages({
dirs: [
// basic
{ dir: 'src/pages', baseRoute: '' },
// features dir for pages
{ dir: 'src/features/**/pages', baseRoute: 'features' },
// with custom file pattern
{ dir: 'src/admin/pages', baseRoute: 'admin', filePattern: '**/*.page.*' },
],
}),
],
}
string[]
['vue', 'ts', 'js']
['tsx', 'jsx', 'ts', 'js']
['tsx', 'jsx', 'ts', 'js']
An array of valid file extensions for pages. If multiple extensions match for a file, the first one is used.
string[]
[]
An array of glob patterns to exclude matches.
# folder structure
src/pages/
βββ users/
β βββ components
β β βββ form.vue
β βββ [id].vue
β βββ index.vue
βββ home.vue
// vite.config.js
export default {
plugins: [
Pages({
exclude: ['**/components/*.vue'],
}),
],
}
'sync' | 'async' | (filepath: string, pluginOptions: ResolvedOptions) => 'sync' | 'async')
'sync'
, others: async
.Import mode can be set to either async
, sync
, or a function which returns
one of those values.
To get more fine-grained control over which routes are loaded sync/async, you can use a function to resolve the value based on the route path. For example:
// vite.config.js
export default {
plugins: [
Pages({
importMode(filepath, options) {
// default resolver
// for (const page of options.dirs) {
// if (page.baseRoute === '' && filepath.startsWith(`/${page.dir}/index`))
// return 'sync'
// }
// return 'async'
// Load about page synchronously, all other pages are async.
return filepath.includes('about') ? 'sync' : 'async'
},
}),
],
}
If you are using async
mode with react-router
, you will need to wrap your route components with Suspense
:
function App() {
return (
<Suspense fallback={<p>Loading...</p>}>
{useRoutes(routes)}
</Suspense>
)
}
'absolute' | 'relative'
'relative'
Import page components from absolute or relative paths. The default behavior is to import from relative paths, but in some special cases, it can be set to 'absolute'
to import from absolute paths.
For example, if your page components are located in the app/pages
directory and you have set base: /app/
in your vite.config.js
, you should set importPath
to 'absolute'
in order to correctly import the page components.
// vite.config.js
export default {
base: '/app/',
plugins: [
Pages({
dirs: 'app/pages',
// It should be set to 'absolute' in this case.
importPath: 'absolute',
}),
],
}
See #492 for more details.
string
'json5'
Default SFC route block parser.
'next' | 'nuxt' | 'remix'
next
Use file system dynamic routing supporting:
string
-
Separator for generated route names.
'vue' | 'react' | 'solid' | PageResolver
'auto detect'
Route resolver, support vue
, react
, solid
or custom PageResolver
.
string
'~pages'
'~react-pages'
'~solid-pages'
Module id for routes import, useful when you what to use multiple pages plugin in one project.
(route: any, parent: any | undefined) => any | void
A function that takes a route and optionally returns a modified route. This is useful for augmenting your routes with extra data (e.g. route metadata).
// vite.config.js
export default {
// ...
plugins: [
Pages({
extendRoute(route, parent) {
if (route.path === '/') {
// Index is unauthenticated.
return route
}
// Augment the route with meta that indicates that the route requires authentication.
return {
...route,
meta: { auth: true },
}
},
}),
],
}
(routes: any[]) => Awaitable<any[] | void>
A function that takes a generated routes and optionally returns a modified generated routes.
(clientCode: string) => Awaitable<string | void>
A function that takes a generated client code and optionally returns a modified generated client code.
Add route meta to the route by adding a <route>
block to the SFC. This will be
directly added to the route after it is generated, and will override it.
You can specific a parser to use using <route lang="yaml">
, or set a default
parser using routeBlockLang
option.
JSON/JSON5:
<route>
{
name: "name-override",
meta: {
requiresAuth: false
}
}
</route>
YAML:
<route lang="yaml">
name: name-override
meta:
requiresAuth: true
</route>
<route>
To enable syntax highlighting <route>
in VS Code using Vetur's Custom Code Blocks add the following snippet to your preferences...
"vetur.grammar.customBlocks": {
"route": "json"
}
Vetur: Generate grammar from vetur.grammar.customBlocks
Add route meta to the route by adding a comment block starts with route
to the JSX or TSX file(In Vue). This will be directly added to the route after it is generated, and will override it.
This feature only support JSX/TSX in vue, and will parse only the first block of comments which should also start with route
.
Now only yaml
parser supported.
'vue'
/*
route
name: name-override
meta:
requiresAuth: false
id: 1234
string: "1234"
*/
Inspired by the routing from NuxtJS π
Pages automatically generates an array of routes for you to plug-in to your
instance of Vue Router. These routes are determined by the structure of the
files in your pages directory. Simply create .vue
files in your pages
directory and routes will automatically be created for you, no additional
configuration required!
For more advanced use cases, you can tailor Pages to fit the needs of your app through configuration.
Pages will automatically map files from your pages directory to a route with the same name:
src/pages/users.vue
-> /users
src/pages/users/profile.vue
-> /users/profile
src/pages/settings.vue
-> /settings
Files with the name index
are treated as the index page of a route:
src/pages/index.vue
-> /
src/pages/users/index.vue
-> /users
Dynamic routes are denoted using square brackets. Both directories and pages can be dynamic:
src/pages/users/[id].vue
-> /users/:id
(/users/one
)src/pages/[user]/settings.vue
-> /:user/settings
(/one/settings
)Any dynamic parameters will be passed to the page as props. For example, given
the file src/pages/users/[id].vue
, the route /users/abc
will be passed the
following props:
{ "id": "abc" }
We can make use of Vue Routers child routes to create nested layouts. The parent component can be defined by giving it the same name as the directory that contains your child routes.
For example, this directory structure:
src/pages/
βββ users/
β βββ [id].vue
β βββ index.vue
βββ users.vue
will result in this routes configuration:
[
{
"path": "/users",
"component": "/src/pages/users.vue",
"children": [
{
"path": "",
"component": "/src/pages/users/index.vue",
"name": "users"
},
{
"path": ":id",
"component": "/src/pages/users/[id].vue",
"name": "users-id"
}
]
}
]
Catch-all routes are denoted with square brackets containing an ellipsis:
src/pages/[...all].vue
-> /*
(/non-existent-page
)The text after the ellipsis will be used both to name the route, and as the name of the prop in which the route parameters are passed.
If you need to generate a sitemap from generated routes, you can use vite-plugin-pages-sitemap. This plugin allow you to automatically generate sitemap.xml and robots.xml files with customization.
MIT License Β© 2021-PRESENT hannoeru
FAQs
File system base vue-router plugin for Vite
The npm package vite-plugin-pages receives a total of 37,922 weekly downloads. As such, vite-plugin-pages popularity was classified as popular.
We found that vite-plugin-pages demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Β It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Automatically fix and test dependency updates with socket fixβa new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
Weβre excited to announce a powerful new capability in Socket: historical data and enhanced analytics.