Skip to content

Commit

Permalink
📝 Philosophy add
Browse files Browse the repository at this point in the history
  • Loading branch information
XionWCFM committed Aug 10, 2024
1 parent 0031b96 commit ad9c817
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,34 @@

**Separate declaration and use of funnels** : For flexible design, we separate the part that defines the funnel from the part that uses it.

# Philosophy

**Querystring First**

In order to provide a smooth user experience through integration with the history stack, the use of query strings is inevitable.

So we provide an API to better manage funnels through query strings.

**Doesn't change route**

Many frameworks provide routers to change paths. Supporting all of this would be very tedious. Instead we provide a query string telling us how to change the path.

**Declarative**

We aim for code that allows you to see at a glance how the funnel should behave.

# Quick Start

## next.js app router

### Requirements

```
qs : ^6
next : ^13
react : ^16
```

### Installation

```
Expand Down

0 comments on commit ad9c817

Please sign in to comment.