A curated, zero-latency reference hub for modern full-stack workflows. No fluff, no endless scrolling—just the raw syntax you need to build.
Built as a side project by Yash Vardhan (@Yash-pluto).
As developers, we constantly switch contexts between writing code, running CLI commands, managing infrastructure, and configuring tools. I got tired of opening dozens of browser tabs or repeatedly prompting AI for the same boilerplate snippets.
I built RefMe to act as a secondary brain—a highly opinionated, lightning-fast, and distraction-free environment curated specifically for quick lookups.
This isn't a standard template. It's custom-built for speed and clarity:
- Framework: Next.js 15 (App Router)
- Styling: Tailwind CSS v4 with a strict monochrome/zinc palette.
- Content: MDX (
next-mdx-remote) allows writing standard markdown cheatsheets while injecting custom interactive React components (like the copy-paste code blocks). - Layout: Custom split-pane design with a fixed left-hand command center and a scrolling right-hand content area.
- Icons & Typography: Lucide React, paired with JetBrains Mono and Outfit.
refme/
├── frontend/
│ ├── app/
│ │ ├── layout.tsx # Global layout & font configuration
│ │ ├── page.tsx # Split-pane homepage & directory search
│ │ ├── docs/ # Architecture & vision page
│ │ ├── [topic]/ # Dynamic MDX renderer for each cheatsheet
│ │ └── components/ # Interactive bits (ClientCodeBlock, DirectoryList)
│ ├── content/ # Where the actual .mdx cheatsheets live
│ ├── src/
│ │ ├── context/ # Custom ThemeContext (Dark/Light mode)
│ │ ├── data/ # Directory structure definitions
│ │ └── lib/ # MDX parsing logic
│ └── tailwind.config.ts
-
Clone the repository
git clone [https://github.com/yash-pluto/refme.git](https://github.com/yash-pluto/refme.git) cd refme/frontend -
Install dependencies
npm install
-
Boot it up
npm run dev
The app will be running at
http://localhost:3000.The app will be available at
http://localhost:3000 -
Build for production
npm run build npm start
- Browse Topics: Navigate through the grid on the homepage to explore different programming languages and frameworks
- Search References: Use the search bar to filter topics by name
- Toggle Theme: Click the moon/sun icon to switch between dark and light modes
- View Details: Click on any reference card to access detailed cheatsheets and code snippets
- Copy Code: Hover over code blocks and use the copy button to add snippets to your clipboard
Global theme context (ThemeContext.tsx) manages dark/light mode state with localStorage persistence and system preference detection.
Topic pages are dynamically generated from data using Next.js App Router, supporting routes like /javascript, /python, /react, etc.
Mobile-first design with Tailwind CSS breakpoints ensures excellent UX across all devices.
Syntax highlighting adapts to the selected theme:
- Dark Mode: vscDarkPlus theme
- Light Mode: oneLight theme
- Mobile: < 768px — Full-width layout with collapsible sidebar
- Tablet: 768px - 1024px — Optimized spacing and grid adjustments
- Desktop: 1024px+ — Full three-column layout with sidebars
RefMe_ prioritizes:
- Clarity: Clean typography and spacing for easy reading
- Performance: Optimized assets and efficient client-side rendering
- Accessibility: Semantic HTML and keyboard navigation support
- Consistency: Unified color scheme and component design
- All content is static or user-generated through the UI
- No backend database credentials exposed
- Environment variables properly managed
- Dependencies regularly updated
Optimized for deployment on Vercel:
npm run build
vercel deployContributions are welcome! Feel free to:
- Report bugs or issues
- Suggest new features
- Submit pull requests
- Improve documentation
This project is created by Yash Vardhan and is available under the MIT License.
Yash Vardhan — Known as Yash Pluto
- GitHub: @yash-pluto
- Portfolio: yash-pluto.vercel.app
Because the site runs on MDX, adding a new topic is incredibly simple:
- Add a new
.mdxfile in thefrontend/content/directory. - Ensure it has standard frontmatter (
title,description). - Add the route to your
REFERENCE_DATAstructure inapp/page.tsxso it shows up in the directory.
MIT License - Do whatever you want with it. If you use the layout or code, a shoutout is appreciated!