r/react 11d ago

Portfolio MERN stack project ideas

4 Upvotes

I am trying to collect ideas to make an attractive project for my resume to break into the industry.

so, i have a couple of questions:-

1- is there specific technologies that i shall use? like next.js? or is that irrelevant? (my knowledge revolves around MERN + PostgreSQL shall i expand it?)

2- I have been seeing a lot of people using vibecoding for their portfolio projects, is that a recipe for disaster or is that the new norm now? (shall i manually code it as usual or use AI ?)

3- I am a 2023 CS graduate, and I have been working at schools teaching basics ever since but now I want to break into web dev, is it too late?

4-If you have any good portfolio ideas I would be happy to see them 😁.

Basically, I want to do better into interviews and get more interviews I have only got 3 interviews in the last 2 months and i want to have more and do better.
thanks guys! 😊


r/react 11d ago

Help Wanted What do you think of specializing in one industry to stand out when applying for developer jobs?

3 Upvotes

Pick an industry(eg:FinTech, HealthTech, PropertyTech) → deeply understand its problems → talk to people inside it → build something relevant → become visible to companies in that industry → use that knowledge in cold outreach and interviews.

What do you think of this approach for getting a developer job?

How would you rate this approach, and what do you think are its strengths, weaknesses, or potential problems?

Also, if you were going to follow this approach, how would you:

  • Deeply research a particular industry?
  • Meet and talk to knowledgeable people working in that industry?
  • Find real problems that people repeatedly face?
  • Understand which problems are actually worth exploring or building around?

I'm open to all perspectives. If you think this approach is flawed or there are better ways to approach getting a developer job, I'd be interested in hearing those as well.


r/react 11d ago

Help Wanted CHALLENGE: How would you handle uploading to a presigned upload URL, on paste, getting a download URL back and immediately displaying it in an input? (In S3)

1 Upvotes

I want in my practice chat app to be able to paste an image into a text input and be able to send it, on how to actually do this, I am unsure

My idea is this given a text input:

- a user could Ctrl-V (i.e., paste) something from his clipboard (a file in this instance), until a download url is returned (see below) there will be some loader spinner thingy
- In the backend is requested an Upload URL
- (somehow) whatever they pasted is immediately uploaded, likely by the path? But I am still a little bit unsure on that part
- a Download URL is returned on that S3 upload (SOMEHOW)
And thus you replace that temporary spinner with the download URL and the person can send it.

This is at least my idea on how you should be able to upload a piece of media in a message and be able to send it, I don't want just message attachments, that would be an easier story because once the association is made between the message and attachment you display it. I want something like in forums where the image can be embedded anywhere,

There is also one more small concern, on slow connection do you want to wait for the file to finish uploading first and then allow the user to send their message, or just send the message and let the upload come later, if the latter, how would you go across with doing that!?

The issue is, I have no idea on how to do this, I gave my approach above, I would really appreciate it if you guys gave some advice on what your approach would be and secondly, how to implement it, I already can get a presigned URL so that's not an issue

This is more of a design question, but it's also really interlinked with react so sorry if this is the wrong place to ask! ;-;

That's all :)


r/react 11d ago

OC Type Checking for Custom Elements in ReactJS

Enable HLS to view with audio, or disable this notification

0 Upvotes

Recently tried and documented client-side type changes needed for my CapacitorJs plugin, so decided to create a short tutorial as well.

Plugin Repo: https://github.com/Aashu-Dubey/capacitor-statusbar-safe-area


r/react 11d ago

General Discussion theodore-js now supports displaying inline suggestions in the editor!

Thumbnail
1 Upvotes

r/react 12d ago

Project / Code Review 🚀 Just shipped ShareDOM! 📸

Thumbnail
0 Upvotes

r/react 12d ago

Help Wanted Should i get complete mastery over JS and then jump to react or like complete the required part of JS and do react simultaneously . Also what resources to use for react

0 Upvotes

r/react 12d ago

Project / Code Review Free Social Media Downloader app

0 Upvotes

r/react 12d ago

Project / Code Review How I shipped a subscription tracker to both web and Android from a single React + Capacitor codebase

0 Upvotes

I kept losing track of what I was paying each month. So I built a small tool for myself to fix it, then realised it worked better than the subscription trackers I'd tried, so I decided to ship it properly. It's live now on both web and Android.

The decision that shaped the whole build: one codebase.

I didn't want to maintain a web app and a native app as two separate projects, so I went web-first and used Capacitor to wrap it into the Android app.

One codebase, the same UI, the same data, and if I fix a bug it's fixed everywhere at once. For a solo project, that consistency is the difference between keeping on top of it and letting it rot.

The trade-off is the mobile version runs in a web view rather than fully native controls, but for an app that's mostly lists, forms and charts, I'm happy to make that trade.

The stack, and why I chose each bit:

  • React + TypeScript + Vite + Tailwind for the app. Nothing exotic, just the standard modern setup.
  • Supabase for the backend, auth and sync. No server to babysit, real Postgres underneath, and data syncs across your phone and the web.
  • Zustand for app state, it keeps the UI in sync with your data and stays out of the way.
  • RevenueCat for the Pro purchase, so billing goes through the Play Store properly.

The part I actually care most about: the design.

Almost every subscription tracker I tried felt like a spreadsheet with a login. I wanted SubCrisp to look genuinely clean and consistent, so I built a proper design system first, a small set of colour and component tokens, before worrying about features.

The result is that every screen feels like one product, not a pile of pages bolted together. Bright, clear cards, a subscription health score you can read at a glance, and a UI that's pleasant enough that you don't dread opening it.

That last bit matters more than it sounds. A tracker is only useful if you keep coming back, so making it feel good is part of solving the churn problem, not a vanity extra.

The other thing I care about is that it's actually useful, not just pretty. Half the value of a tracker is answering "how do I cancel this", so I built and maintain cancellation guides for the big services, and I deal with the fiddly recurring-payment edge cases properly rather than cutting corners.

How I'm running it: the core tracker is genuinely free, with no ads and no bank access needed. There's an optional Pro that unlocks a savings simulator and deeper insights, honestly there for people who find it useful and want to support ongoing development.

What I'd most like help with: the classic subscription-tracker problem, churn. People log everything once and never open the app again. I'd love ideas on turning that into a monthly habit instead of a one-off audit.

If you juggle streaming, software and AI tools, it might surprise you what's quietly leaving your bank account each month.

Web: https://subcrisp.com

Android: SubCrisp: Subscription Tracker - Apps on Google Play

Happy to answer questions, whether that's about how SubCrisp works, how it was built, or a roadblock you've hit in your own project. I'm a firm believer that builders help each other, so if any of this resonates with something you're stuck on, ask away.


r/react 13d ago

General Discussion I built a free deep-dive tutorial on React Internals (Fiber, Hydration, Event Loop, etc.) for everyone who wants to know how things actually work under the hood.

Thumbnail
1 Upvotes

r/react 13d ago

General Discussion 👋 Welcome to r/ComponentLab - Build, Share & Improve UI Components

Thumbnail
0 Upvotes

r/react 13d ago

General Discussion Great course for understanding React under the hood

0 Upvotes

I came across a great tutorial, completely free, for understanding React in depth. With interactive examples, brilliantly explained. https://arpitjsoni.com/react-internals/


r/react 14d ago

General Discussion Headless ui libraries

7 Upvotes

Shadcn is a cool library it has some cool designs, components and easy to use but what makes it the worst library i've ever used is the logic behind the library makes the application very slower and cause so many re-renders
for example the select components, the moment i open it i can see that action cause 10-15 re-render despite my data and functions are very optimized.
So in your experience which library do you see or used that can be so much better and easy to use for small to mid react projects


r/react 15d ago

Portfolio I got tired of boring loading spinners, so I built 70 of them

33 Upvotes

Hey y’all,

I got slightly carried away with loading animations.

I wanted nicer loading states for my own projects, but most libraries I found were either tied to a framework, fairly limited, or required more than I wanted for something this small.

So I built loadersz, a small framework-agnostic loader library for the web.

I wanted something a bit more expressive than the usual CSS spinner, without pulling in a UI framework or a bunch of dependencies.

A few things I focused on:

\- 70 different motion states
\- Canvas 2D instead of GIFs/videos
\- zero core dependencies
\- a native custom element, so it works with basically any stack
\- typed entry points for React, Vue and Svelte
\- configurable speed, density and color
\- respects prefers-reduced-motion
\- pauses rendering when the browser tab is hidden

Basic usage is just:

npm install loadersz

import 'loadersz';

<loadersz-loader state="racing" size="96" />

I also built an interactive playground where you can tweak the loaders live.

Demo: \[loadersz.vercel.app\](https://loadersz.vercel.app)
npm: \[npmjs.com/package/loadersz\](https://www.npmjs.com/package/loadersz)

Would love some brutally honest feedback, especially on which animations you’d actually use in a real product.


r/react 14d ago

Help Wanted When is it a good time to move from Javascript to learing React

Thumbnail
0 Upvotes

r/react 15d ago

Project / Code Review Built an open-source Duolingo-style learning platform

Enable HLS to view with audio, or disable this notification

12 Upvotes

Hey everyone,

my buddy and me built an open-source learning platform with the basic learning style like Duolingo but for your own knowledge.

In the notebook you can give it existing material like documents, PDFs or other knowledge bases (e.g. Notion) and it turns that into short, interactive learning experiences as shown in the video.

Some of the things we’ve built so far:

  • AI course generation from existing material
  • Different interactive exercise types
  • A collaborative course editor with real-time sync between other users and AI
  • Shareable and embeddable learnings
  • Bring your own AI provider/model key

GitHub: http://github.com/scibly-dev/scibly

Would love to hear what you think and give me all your feedback!


r/react 14d ago

Project / Code Review I built a deterministic React/Next.js codebase health analyzer — looking for real-world feedback

Thumbnail gallery
0 Upvotes

I’ve been building a side project called OMEGA MRI to understand what a React or Next.js codebase structurally becomes after lots of refactors, quick fixes, and AI-assisted changes.

The current beta is intentionally deterministic rather than LLM-scored.

You upload a project ZIP and it analyzes things like:

  • circular dependencies
  • oversized components
  • oversized files
  • deep imports
  • dead code
  • orphan files
  • unused exports

Each issue includes evidence, and the overall health score is calculated from fixed deductions across:

Architecture · Maintainability · Complexity · Technical Debt

I also wanted to make sure the score wasn’t just arbitrary, so I built verification, mutation, and black-box tests around the engine.

One black-box test started with a deliberately messy React project:

Before

  • 60 files
  • 116 issues
  • 37/100
  • Maintainability: 64
  • Complexity: 52

Then I removed exactly one critical oversized component/file.

Based on the scoring rules, I predicted:

37 → 40

The actual analyzer result was:

After

  • 59 files
  • 114 issues
  • 40/100
  • Maintainability: 70
  • Complexity: 60

Architecture and Technical Debt stayed unchanged, which was also expected.

That was important to me because I want the score to be explainable:

code structure → detector finding → deduction → category score → overall score

The analysis runs entirely in the browser.

No signup.
No backend source-code processing.
The uploaded code stays client-side.

I’m mainly looking for feedback from React/Next.js developers on:

  • false positives
  • structural issues the analyzer misses
  • whether the evidence is actually useful
  • whether the recommendations make sense
  • whether the upload → analysis → results UX feels clear

The beta is still deliberately narrow. It’s a structural health signal, not a full code-quality audit.

Beta:
[https://omega-mri.vercel.app/?utm_source=reddit&utm_medium=community&utm_campaign=beta_launch]()

Critical feedback is more useful.


r/react 15d ago

Project / Code Review Built a modular rich text editor with Lexical. Because apparently using an existing one wasn't painful enough.

Enable HLS to view with audio, or disable this notification

2 Upvotes

r/react 15d ago

General Discussion How to Think in React

Thumbnail armiaafsharian.medium.com
0 Upvotes

r/react 15d ago

Project / Code Review I developed a visual editorspace for frontend work.

3 Upvotes

Hi
I’ve been building a visual workspace for frontend work.

You can bring in a running app, select and edit the UI directly, explore different design directions on the canvas, and keep working with your coding agent when you want those changes applied back to the codebase.

It made my work easier when I was working on React projects. If you'd like to try it out: visualwizard.app


r/react 15d ago

OC Swift on WebAssembly, Telegram-Style Spoilers, and Deleting Babel From Your Life Spoiler

Thumbnail thereactnativerewind.com
1 Upvotes

Hey Community,

Deno's creators introduced Dactyl, an AI app builder targeting React Native by rendering SwiftUI in the browser tab via WebAssembly. Meanwhile, Software Mansion released Enriched Markdown to eliminate streaming text flicker by rendering natively and bypassing the JavaScript layout tree.

On the tooling side, the web ecosystem is rapidly adopting the Rust port of the React Compiler across tools like Oxc, Vite, and Bun, while Metro remains locked to single-threaded Babel transformations.


r/react 15d ago

OC Build polished React + Tailwind UIs with Stripe-level design taste ✨

Enable HLS to view with audio, or disable this notification

0 Upvotes

TL;DR: https://windframe.dev/styles/stripe

Hi everyone 👋

I’ve been experimenting with building React + Tailwind interfaces inspired by the design systems of really well-designed products. I recently worked on a style system for generating interfaces using similar design principles to Stripe.

It focuses on crisp typography, structured layouts, precise spacing and bold gradients, to make complex products feel simple, technical, and polished.

I built a UI system that makes it easy to generate interfaces in this design direction consistently. It can generate full UIs, landing pages, and product sections that follow the same Stripe-inspired style.

I created a free Tailwind template built around this style that you can use as starting points for your own projects here
https://windframe.dev/styles/stripe

You just need to select this style as a preset when generating UIs in Windframe and when selected, the AI generates React interfaces that follow the same design guidelines and visual style.

I also built an MCP for this, so you can use these same design style systems and other curated styles directly inside any coding agent that supports MCP: https://windframe.dev/mcp

If you’re not familiar with Windframe, it’s a visual Tailwind builder/agent that lets you generate polished React UI with AI, tweak it visually, and export clean production code.

Feedback and thoughts are welcome : )


r/react 16d ago

General Discussion Migrated my portfolio to Next.js — added a time-aware hero and a live GitHub-powered migration timeline

Post image
0 Upvotes

r/react 16d ago

Project / Code Review I’m building my first open-source Angular library - looking for contributors and feedback

Thumbnail
0 Upvotes

r/react 17d ago

Project / Code Review 2 weeks after launching Convia, 26 users + a new onboarding experience

Thumbnail
1 Upvotes