1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70## file system router
### installation :
```bash
npm install file-system-router
```
### usage in your app :
```jsx
// App.jsx
import { BrowserRouter as Router } from 'react-router-dom'
import { FileSystemRouter } from 'file-system-router'
// vite users:
const pages = import.meta.glob('./pages/**/*.jsx', { eager: true })
// webpack users:
// const pages = require.context('./pages', true, /\.jsx$/)
export default function App() {
return (
<Router>
<FileSystemRouter pages={pages} />
</Router>
)
}
```
### file structure convention :
```
pages/
index.jsx -> /
about.jsx -> /about
blog/
index.jsx -> /blog
[id].jsx -> /blog/:id
author/
[author_name]/
name.jsx -> /author/:author_name/name
```
### features :
1. automatically converts files to routes
2. supports dynamic parameters with `[param].jsx`
3. supports nested routes based on your file and directory structure, `[param]/example.jsx`
4. handles index routes with `index.jsx`
### for your page components :
```jsx
// pages/blog/[id].jsx
import { useParams } from 'react-router-dom'
export default function BlogPost() {
const { id } = useParams()
return <div>blog post : {id}</div>
}
// pages/author/[author_name]/name.jsx
import { useParams } from 'react-router-dom'
export default function AuthorName() {
const { author_name } = useParams()
return <div>author name : {author_name}</div>
}
```