Socket
Socket
Sign inDemoInstall

@refinedev/nestjs-query

Package Overview
Dependencies
555
Maintainers
5
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @refinedev/nestjs-query

refine NestJS Query data provider. refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.


Version published
Weekly downloads
970
increased by25.97%
Maintainers
5
Install size
6.07 MB
Created
Weekly downloads
 

Readme

Source
refine logo

Home Page | Discord | Examples | Blog | Documentation

Discord Twitter Follow

refine - 100% open source React framework to build web apps 3x faster | Product Hunt


refine is an open-source, headless React framework for developers building enterprise internal tools, admin panels, dashboards, B2B applications.

It eliminates repetitive tasks in CRUD operations and provides industry-standard solutions for critical project components like authentication, access control, routing, networking, state management, and i18n.

NestJS Query data provider integration for refine

Nestjs-query

refine is headless by design, offering unlimited styling and customization options. Moreover, refine ships with ready-made integrations for Ant Design, Material UI, Mantine, and Chakra UI for convenience.

refine has connectors for 15+ backend services, including REST API, GraphQL, and popular services like Airtable, Strapi, Supabase, Firebase, and NestJS.

Installation & Usage

npm install @refinedev/nestjs-query graphql-tag graphql-ws
import dataProvider, {
  GraphQLClient,
  liveProvider,
} from "@refinedev/nestjs-query";

import { createClient } from "graphql-ws";

const App = () => {
  return (
    <Refine
      dataProvider={dataProvider(new GraphQLClient("API_URL"))}
      liveProvider={liveProvider(createClient({ url: "WS_URL" }))}
      /* ... */
    >
      {/* ... */}
    </Refine>
  );
};

Documentation

FAQs

Last updated on 03 Apr 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc