Nov 27, 2025 · 1 min read · Parfois, on a besoin de redéfinir ou de définir des méthodes de classe en Ruby pour qu’elles s’adaptent parfaitement à notre usage, à notre application. Mais cela peut être se révéler très dangereux (si d’autres gems, par exemple, utilisent ces métho...
Join discussionMay 20, 2025 · 14 min read · Introduction Refine is a React based meta framework used to quickly build data intensive web applications. It comes with an extensible headless core and with the help of supplementary packages offers integrations with a myriad of frontend and backend...
Join discussionMar 28, 2025 · 2 min read · In this article, we will review the function, downloadInBrowser, in Refine source code. export const downloadInBrowser = ( filename: string, content: string, type?: string, ) => { if (typeof window === "undefined") { return; } const ...
Join discussionMar 27, 2025 · 2 min read · In this article, we will review a function, flattenObjectKeys, in Refine source code. const isNested = (obj: any) => typeof obj === "object" && obj !== null; const isArray = (obj: any) => Array.isArray(obj); export const flattenObjectKeys = (obj: an...
Join discussionMar 26, 2025 · 4 min read · In this article, we will review a function named asyncDebounce in Refine source code. import debounce from "lodash/debounce"; type Callbacks<T extends (...args: any) => any> = { resolve?: (value: Awaited<ReturnType<T>>) => void; reject?: (reason...
Join discussionMar 25, 2025 · 2 min read · I wrote an in-depth article about .git-blame-ignore-revs file found in React source code, but in this article, let’s draw a comparison between React and Refine codebase’s .git-blame-ignore-revs. Before you continue reading this article, I recommend ...
Join discussionMar 24, 2025 · 3 min read · In this article, we will review the file, .cursorignore, in Refine codebase. Refine is an open-source React framework to build internal tools. We are familiar with .gitignore but let’s learn what .cursorignore file is about. Cursor Cursor is the AI ...
Join discussionJun 13, 2023 · 3 min read · Hey folks! Today, I'm thrilled to introduce you to a way of getting your next CRUD app up and running in minutes using refine.dev This amazing project has become a personal favourite of mine, and I've had the pleasure of using it extensively for my w...
Join discussion
Apr 14, 2023 · 3 min read · Last week, the refine ft Strapi event offered developers an exciting opportunity to learn about building applications with two powerful technologies. Refine and Strapi, when combined, offer an incredible array of possibilities for building applicatio...
Join discussion