This package has been deprecated

Author message:

Package no longer supported. List of supported data providers: https://refine.dev/docs/guides-concepts/data-fetching/#supported-data-providers

@refinedev/nhost
TypeScript icon, indicating that this package has built-in type declarations

4.1.6 • Public • Published


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.

NHost data provider and live provider integrations for refine

Nhost is an open-source backend and development platform that enables developers to build and scale their web and mobile apps.

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/nhost @nhost/nhost-js @nhost/react-auth
import { NhostClient } from "@nhost/nhost-js";
import dataProvider, { graphqlWS } from "@refinedev/nhost";

const nhost = new NhostClient({ backendUrl: "NHOST_API_URL" });

const gqlWsClient = graphqlWS.createClient({
  url: WS_URL,
  connectionParams: () => ({
    headers: {
      Authorization: `Bearer \${nhost.auth.getJWTToken()}`,
    },
  }),
});

const App = () => {
  return (
    <Refine
      dataProvider={dataProvider(nhost)}
      liveProvider={liveProvider(gqlWsClient)}
      /* ... */
    >
      {/* ... */}
    </Refine>
  );
};

Documentation

/@refinedev/nhost/

    Package Sidebar

    Install

    npm i @refinedev/nhost

    Weekly Downloads

    34

    Version

    4.1.6

    License

    MIT

    Unpacked Size

    162 kB

    Total Files

    30

    Last publish

    Collaborators

    • alicanerdurmaz
    • aliemirsen
    • omerfarukaplak
    • pankodbot
    • willico