From e3380e3ccb4ced2918b475f540609883e4751977 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 4 Nov 2021 00:03:31 -0700 Subject: [PATCH] [docs] update router FAQ (#6902) --- site/content/faq/900-is-there-a-router.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/content/faq/900-is-there-a-router.md b/site/content/faq/900-is-there-a-router.md index 406e755313..93182281c3 100644 --- a/site/content/faq/900-is-there-a-router.md +++ b/site/content/faq/900-is-there-a-router.md @@ -4,10 +4,10 @@ question: Is there a router? The official routing library is [SvelteKit](https://kit.svelte.dev/), which is currently in beta. SvelteKit provides a filesystem router, server-side rendering (SSR), and hot module reloading (HMR) in one easy-to-use package. It shares similarities with Next.js for React. -However, you can use any router lib you want. A lot of people use [page.js](https://github.com/visionmedia/page.js). There's also [navaid](https://github.com/lukeed/navaid), which is very similar. +However, you can use any router lib you want. A lot of people use [page.js](https://github.com/visionmedia/page.js). There's also [navaid](https://github.com/lukeed/navaid), which is very similar. And [universal-router](https://github.com/kriasoft/universal-router), which is similar as well, but with the concept of child routes. If you prefer a declarative HTML approach, there's [svelte-routing](https://github.com/EmilTholin/svelte-routing). -If you need hash-based routing on the client side, check out [svelte-spa-router](https://github.com/ItalyPaleAle/svelte-spa-router), or [abstract-state-router](https://github.com/TehShrike/abstract-state-router/), a mature router for business software. +If you need hash-based routing on the client side, check out [svelte-spa-router](https://github.com/ItalyPaleAle/svelte-spa-router) or [abstract-state-router](https://github.com/TehShrike/abstract-state-router/). -For filesystem-based routing, you can take a look at [Routify](https://routify.dev). +[Routify](https://routify.dev) is another filesystem-based router, similar to SvelteKit's router.