Gathering detailed insights and metrics for @refinedev/core
Gathering detailed insights and metrics for @refinedev/core
Gathering detailed insights and metrics for @refinedev/core
Gathering detailed insights and metrics for @refinedev/core
A React Framework for building internal tools, admin panels, dashboards & B2B apps with unmatched flexibility.
npm install @refinedev/core
Typescript
Module System
Node Version
NPM Version
@refinedev/mui@6.2.1
Updated on Jun 13, 2025
@refinedev/devtools-ui@1.2.1
Updated on Jun 13, 2025
@refinedev/inferencer@5.1.1
Updated on Jun 13, 2025
@refinedev/chakra-ui@2.37.1
Updated on Jun 13, 2025
@refinedev/hasura@6.6.14
Updated on Jun 13, 2025
@refinedev/react-table@5.6.17
Updated on Jun 13, 2025
TypeScript (97.68%)
JavaScript (2.04%)
CSS (0.16%)
HTML (0.08%)
Handlebars (0.05%)
Total Downloads
2,126,417
Last Day
1,670
Last Week
32,177
Last Month
134,576
Last Year
1,458,622
MIT License
31,524 Stars
6,950 Commits
2,566 Forks
139 Watchers
37 Branches
288 Contributors
Updated on Jul 06, 2025
Minified
Minified + Gzipped
Latest Version
4.57.9
Package Id
@refinedev/core@4.57.9
Unpacked Size
3.85 MB
Size
779.64 kB
File Count
1,536
NPM Version
10.8.2
Node Version
18.20.7
Published on
Apr 07, 2025
Cumulative downloads
Total Downloads
Last Day
0.8%
1,670
Compared to previous day
Last Week
-4.8%
32,177
Compared to previous week
Last Month
2.7%
134,576
Compared to previous month
Last Year
140.9%
1,458,622
Compared to previous year
9
5
22
Refine is a React meta-framework for CRUD-heavy web applications. It addresses a wide range of enterprise use cases including internal tools, admin panels, dashboards and B2B apps.
Refine's core hooks and components streamline the development process by offering industry-standard solutions for crucial aspects of a project, including authentication, access control, routing, networking, state management, and i18n.
Refine's headless architecture enables the building of highly customizable applications by decoupling business logic from UI and routing. This allows integration with:
Any custom designs or UI frameworks like TailwindCSS, along with built-in support for Ant Design, Material UI, Mantine, and Chakra UI.
Various platforms, including Next.js, Remix, React Native, Electron, etc., by a simple routing interface without the need for additional setup steps.
Start a new project with Refine in seconds using the following command:
1npm create refine-app@latest my-refine-app
Or you can create a new project on your browser:
Here's Refine in action, the below code is an example of a simple CRUD application using Refine + React Router + Material UI:
1import React from "react"; 2import { Refine, useMany } from "@refinedev/core"; 3import { ThemedLayoutV2 } from "@refinedev/mui"; 4import dataProvider from "@refinedev/simple-rest"; 5import routerProvider from "@refinedev/react-router"; 6import { BrowserRouter, Outlet, Route, Routes } from "react-router"; 7 8import CssBaseline from "@mui/material/CssBaseline"; 9 10export default function App() { 11 return ( 12 <BrowserRouter> 13 <CssBaseline /> 14 <Refine 15 dataProvider={dataProvider("https://api.fake-rest.refine.dev")} 16 routerProvider={routerProvider} 17 resources={[ 18 { 19 name: "products", 20 list: "/products", 21 }, 22 ]} 23 > 24 <Routes> 25 <Route 26 element={ 27 <ThemedLayoutV2> 28 <Outlet /> 29 </ThemedLayoutV2> 30 } 31 > 32 <Route path="/products"> 33 <Route index element={<ProductList />} /> 34 </Route> 35 </Route> 36 </Routes> 37 </Refine> 38 </BrowserRouter> 39 ); 40} 41 42// src/pages/products/list.tsx 43 44import { List, useDataGrid, DateField } from "@refinedev/mui"; 45import { DataGrid, GridColDef } from "@mui/x-data-grid"; 46 47export const ProductList = () => { 48 const { dataGridProps } = useDataGrid(); 49 50 const { data: categories, isLoading } = useMany({ 51 resource: "categories", 52 ids: 53 dataGridProps?.rows?.map((item) => item?.category?.id).filter(Boolean) ?? 54 [], 55 queryOptions: { 56 enabled: !!dataGridProps?.rows, 57 }, 58 }); 59 60 const columns = React.useMemo<GridColDef[]>( 61 () => [ 62 { field: "id", headerName: "ID", type: "number" }, 63 { field: "name", flex: 1, headerName: "Name" }, 64 { 65 field: "category", 66 flex: 1, 67 headerName: "Category", 68 display: "flex", 69 renderCell: ({ value }) => 70 isLoading 71 ? "Loading..." 72 : categories?.data?.find((item) => item.id === value?.id)?.title, 73 }, 74 { 75 field: "createdAt", 76 flex: 1, 77 headerName: "Created at", 78 display: "flex", 79 renderCell: ({ value }) => <DateField value={value} />, 80 }, 81 ], 82 [categories?.data, isLoading], 83 ); 84 85 return ( 86 <List> 87 <DataGrid {...dataGridProps} columns={columns} /> 88 </List> 89 ); 90};
The result will look like this:
Refine shines on data-intensive⚡ enterprise B2B applications like admin panels, dashboards and internal tools. Thanks to the built-in SSR support, it can also power customer-facing applications like storefronts.
You can take a look at some live examples that can be built using Refine from scratch:
Refer to the contribution docs for more information.
If you have any doubts related to the project or want to discuss something, then join our Discord server.
We extend our gratitude to all our numerous contributors who create plugins, assist with issues and pull requests, and respond to questions on Discord and GitHub Discussions.
Refine is a community-driven project, and your contributions continually improve it.
Licensed under the MIT License, Copyright © 2021-present Refinedev
No vulnerabilities found.
No security vulnerabilities found.