Socket
Book a DemoInstallSign in
Socket

@tanstack/angular-query-experimental

Package Overview
Dependencies
Maintainers
2
Versions
274
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tanstack/angular-query-experimental

Signals for managing, caching and syncing asynchronous and remote data in Angular

Source
npmnpm
Version
5.22.1
Version published
Weekly downloads
40K
21.17%
Maintainers
2
Weekly downloads
 
Created
Source

TanStack Query Header

npm version npm license bundle size npm

Angular Query

This library is currently in an experimental stage. This means that breaking changes will happen in minor AND patch releases. Use at your own risk. If you choose to rely on this in production in an experimental stage, please lock your version to a patch-level version to avoid unexpected breakages.

Functions for fetching, caching and updating asynchronous data in Angular

Documentation

Visit https://tanstack.com/query/latest/docs/angular/overview

Quick Features

  • Transport/protocol/backend agnostic data fetching (REST, GraphQL, promises, whatever!)
  • Auto Caching + Refetching (stale-while-revalidate, Window Refocus, Polling/Realtime)
  • Parallel + Dependent Queries
  • Mutations + Reactive Query Refetching
  • Multi-layer Cache + Automatic Garbage Collection
  • Paginated + Cursor-based Queries
  • Load-More + Infinite Scroll Queries w/ Scroll Recovery
  • Request Cancellation
  • Dedicated Devtools

Quick Start

Angular Query requires Angular 16.

  • Install angular-query

    $ npm i @tanstack/angular-query-experimental
    # or
    $ pnpm add @tanstack/angular-query-experimental
    # or
    $ yarn add @tanstack/angular-query-experimental
    
  • Initialize Angular Query by adding provideAngularQuery to your application

    import { provideAngularQuery } from '@tanstack/angular-query-experimental'
    import { QueryClient } from '@tanstack/angular-query-experimental'
    
    bootstrapApplication(AppComponent, {
      providers: [provideAngularQuery(new QueryClient())],
    })
    
  • Inject query

    import { injectQuery } from '@tanstack/angular-query-experimental'
    import { Component } from '@angular/core'
    
    @Component({...})
    export class TodosComponent {
      info = injectQuery(() => ({ queryKey: ['todos'], queryFn: fetchTodoList }))
    }
    
  • If you need to update options on your query dynamically, make sure to pass them as signals

    import { injectQuery } from '@tanstack/angular-query-experimental'
    import { signal, Component } from '@angular/core'
    
    @Component({...})
    export class TodosComponent {
      id = signal(1)
      enabled = signal(false)
    
      info = injectQuery(() => ({
        queryKey: ['todos', this.id()],
        queryFn: fetchTodoList,
        enabled: this.enabled(),
      }))
    }
    

Keywords

angular query

FAQs

Package last updated on 19 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts