Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vordgi/nimpl-router
Edge router for next.js apps. Allows you to configure rewrites, redirects, i18n and basePath at the middleware level instead of next.config.js.
https://github.com/vordgi/nimpl-router
edge i18n middleware nextjs nextjs14
Last synced: 30 days ago
JSON representation
Edge router for next.js apps. Allows you to configure rewrites, redirects, i18n and basePath at the middleware level instead of next.config.js.
- Host: GitHub
- URL: https://github.com/vordgi/nimpl-router
- Owner: vordgi
- License: mit
- Created: 2024-06-24T17:15:57.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-30T14:12:35.000Z (5 months ago)
- Last Synced: 2024-10-05T14:29:38.061Z (about 1 month ago)
- Topics: edge, i18n, middleware, nextjs, nextjs14
- Language: TypeScript
- Homepage: https://nimpl.tech/router
- Size: 48.8 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @nimpl/router
Edge router for next.js apps. Allows you to configure rewrites, redirects, i18n and basePath at the middleware level instead of next.config.js.
Visit https://nimpl.tech/router to view the full documentation.
```js
import { createMiddleware } from "@nimpl/router";export const middleware = createMiddleware({
redirects: [
{
source: "/old",
destination: "/",
permanent: false,
},
],
rewrites: [
{
source: "/home",
destination: "/",
locale: false,
},
],
basePath: "/doc",
i18n: {
defaultLocale: "en",
locales: ["en", "de"],
},
});
```## Installation
**Using npm:**
```bash
npm i @nimpl/router
```**Using yarn:**
```bash
yarn add @nimpl/router
```## Additional
Please consider giving a star if you like it, it shows that the package is useful and helps continue work on this and other packages.
Create issues for identified issues, desired getters, or various improvements.
## License
[MIT](https://github.com/vordgi/nimpl-router/blob/main/LICENSE)