Logo

# TanStack is The messiah - Part 1

Tanstack, The Savior

avatar
Kiet DoPublished on May 10, 2024
loading

TanStack is The messiah - Part 1

1) What is TanStack?

TanStack is an open-source software development toolkit that provides a range of solutions enabling developers to build web and mobile applications efficiently, quickly, and robustly. TanStack includes various tools and libraries, all designed to optimize the development process, from application state management and data handling to UI creation.

img

TanStack is currently being developed and widely used with popular libraries such as:

  • TanStack Query: Powerful asynchronous state management for TS/JS, React, Solid, Vue, Svelte and Angular
  • TanStack Table: Headless UI for building powerful tables & datagrids - Supercharge your tables or build a data grid from scratch for TS/JS, React, Vue, Solid & Svelte while retaining 100% control over markup and styles.
  • TanStack Router: Modern and scalable routing for React applications - A fully type-safe React router with built-in data fetching, stale-while revalidate caching and first-class search-param APIs.
  • TanStack Virtual: Headless UI for Virtualizing Large Element Lists - Virtualize only the visible DOM nodes within massive scrollable elements at 60FPS in TS/JS, React, Vue, Solid & Svelte while retaining 100% control over markup and styles.

2) Why is TanStack called the messiah

Let's compare TanStack with other libraries.

2.1 TanStack Query vs RTK Query

If you have ever worked with both of these libraries, your initial impression will definitely be:

Why is TanStack Query so easy to use and set up?

When using TanStack Query, the number of lines of code (LOC) significantly decreases.

Fact: RTK Query is designed to complement Redux Toolkit as a tool that not only supports data-fetching but also manages state. However, this also imposes limitations on RTK Query - it cannot be used standalone, leading to significant constraints on bundle size as well as complexity in setup and usage

On the other hand, TanStack Query is a standalone tool that can operate independently without relying on any other library. Setting up and using it is much easier compared to its competitors. Additionally, it offers features such as support for Infinite Query, Devtool, and more…(To Reference)

Real-world Problems: With a project set up by RTK Query and NextJs

At first, to support data fetching on the server side. Nothing happened until then our project encountered a serious issue on the server - Memory leak
The initial cause was identified as stemming from RTK Query's requirement of using an additional third-party library recommended by Redux itself: next-redux-wrapper. This library, combined with the inability of RTK Query to clear memory, led to memory accumulation on the server side to a level where immediate clearing became unattainable for us.

img

TanStack has come as The messiah. We have switched to using TanStack Query with features almost identical but supported with server-side memory clearing.

img

2.2 TanStack Router vs React Router

React Router is one of the best third-party libraries for React Developer

TanStack Router has recently been introduced with version v1, but it has garnered significant attention from the community due to its numerous advantages and promising potential to potentially replace its predecessor.

img

What is the advantage of this product?

Besides the features nearly identical to its predecessor React Router, TanStack Router also boasts notable features such as

  • Type safe 100% : allowing users to opt for Typesafe navigation.

img

  • File-base navigate: Anyone who has used frameworks like Next.js or Remix, this feature won't be too unfamiliar. It's a feature that allows you to automatically create your routes when creating files without the need for manual intervention.
  • Validate Param: This is a fairly new feature of the TanStack Router. It allows you to validate the parameters received from the URL before bringing them down and using them, thus enhancing security and code quality.

img
img

  • Authentication (Protected Router): The TanStack Router introduces the beforeLoad method, allowing you to perform authentication prior to rendering a component. This eliminates the need to create a higher-order component (HOC) and wrap the pages requiring authentication as you had to do previously.

img

Summing Up

TanStack has produced many libraries and is still in the process of development. These libraries are highly regarded by the community and show positive signs. In addition to the aforementioned libraries, TanStack is still developing many other open-source libraries. Let's wait and see if these libraries can change the game among the current giants.

0
12
312
share post

Comments

avatar