Skip to content

Commit

Permalink
add link to intro article
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoburniske committed Aug 5, 2023
1 parent 98297c7 commit 0bcbc9d
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
# Leptos Query

[![Crates.io](https://img.shields.io/crates/v/leptos_query.svg)](https://crates.io/crates/leptos_query)
[![docs.rs](https://docs.rs/leptos_query/badge.svg)](https://docs.rs/leptos_query)

<p align="center">
<a href="https://docs.rs/leptos_query">
<a href="https://github.com/nicoburniske/leptos_query">
<img src="https://raw.githubusercontent.com/nicoburniske/leptos_query/main/logo.svg" alt="Leptos Query" width="150"/>
</a>
</p>
<p align="center">
<a href="https://crates.io/crates/leptos_query">
<img src="https://img.shields.io/crates/v/leptos_query.svg" alt="Crates.io"/>
</a>
<a href="https://crates.io/crates/leptos_query">
<img src="https://docs.rs/leptos_query/badge.svg" alt="Crates.io"/>
</a>
</p>

## About

Leptos Query is a robust asynchronous state management library for [Leptos](https://github.com/leptos-rs/leptos), providing simplified data fetching, integrated reactivity, server-side rendering support, and intelligent cache management.

Heavily inspired by [Tanstack Query](https://tanstack.com/query/latest/).

Read the introduction article here: [The Forging of Leptos Query](https://nicoburniske.com/thoughts/forging_leptos_query)

## Why Choose Leptos Query?

Leptos Query focuses on simplifying your data fetching process and keeping your application's state effortlessly synchronized and up-to-date. Here's how it's done:
Expand Down Expand Up @@ -218,4 +225,4 @@ When a query is invalidated, the following happens:

`is_fetching` is true when the query is in the process of fetching data.

`is_loading` is true when the query is in the process of fetching data FOR THE FIRST TIME.
`is_loading` is true when the query is in the process of fetching data for the first time.

0 comments on commit 0bcbc9d

Please sign in to comment.