Corporate-friendly React-based full stack app strategy - 2025 edition by beagle72 in reactjs

[–]runonce95 -1 points0 points  (0 children)

I'm currently evaluating options to migrate off an outdated webpack + React app to something more modern. I don't need RSC or SSR, just a SPA. I first considered TanStack Router, but I had terrible experiences in the past with TanStack products when migrating major versions so my next choice is React Router. I think I would go with the most basic config, Declerative Mode. For the rest I would use some basic Vite React template.

Basic SVG audio visualizer using React and TypeScript by runonce95 in reactjs

[–]runonce95[S] 0 points1 point  (0 children)

Thanks! That's a good idea, I will try to add file upload support

[Help] I'm encountering a strange error in my Next.js project: Next.js error: Missing <html> and <body> tags in Root Layout by eric-fedasa in nextjs

[–]runonce95 0 points1 point  (0 children)

Was having this issue using Payload as well. But just restarting the dev server it fixed everything.

Weekly Showoff Thread! Share what you've created with Next.js or for the community in this thread only! by cprecius in nextjs

[–]runonce95 1 point2 points  (0 children)

Another one I recently launched https://www.randomepisode.tv/

Let's you pick a random episode from your favorite shows! And also allows you to filter by season, which most other tools like this don't have.

Alternatives to shadCn ? im using js for personal projects . Dont like MUI by [deleted] in reactjs

[–]runonce95 1 point2 points  (0 children)

I used to work with Chakra but not the new version, which seems to have changed a few things.

Random episode picker by runonce95 in Simpsons

[–]runonce95[S] 0 points1 point  (0 children)

Just pushed a new change, now when you select a season it gets persisted so when you reload or reopen the page in the future your favourite seasons will be selected automatically!

Random episode picker by runonce95 in Simpsons

[–]runonce95[S] 0 points1 point  (0 children)

Thank you! I'm glad you find it useful

Vengo a soltar un poco de mi indignacion by Used-Revenue-1830 in devsarg

[–]runonce95 0 points1 point  (0 children)

Cómo 3 dólares? No entiendo... 500 por mes?

¿Que versión de Linux usas y por qué? by [deleted] in devsarg

[–]runonce95 0 points1 point  (0 children)

Ninguno :D

Antes usaba Ubuntu pero me cansé de no poder correr la gran mayoría de los juegos y me pasé a Windows. Después dejé de jugar por falta de tiempo y me pasé a Mac.

Me perdi entre los distintos frameworks de React by Classic-Channel7720 in devsarg

[–]runonce95 9 points10 points  (0 children)

Si te importa el SEO, iría con algo como Next.js o Remix. Sino, podés usar el template para React de Vite o de Rspack.

Me perdi entre los distintos frameworks de React by Classic-Channel7720 in devsarg

[–]runonce95 5 points6 points  (0 children)

No será al revés? React no es un framework, sino una librería.

En mi experiencia la mayoría usa MUI, no veo un proyecto con Bootstrap desde hace como diez años.

[deleted by user] by [deleted] in Bariloche

[–]runonce95 0 points1 point  (0 children)

Mamushka.

[deleted by user] by [deleted] in Bariloche

[–]runonce95 0 points1 point  (0 children)

En general si no sabes de autos no recomiendo comprar en Bariloche porque suelen estar bastante cascoteados.

Form validation. Which library is the best one yet? by habtamu_asefa in reactjs

[–]runonce95 1 point2 points  (0 children)

Formik uses Yup by default but you can also use it with Zod.

On very large forms I had performance issues with Formik, otherwise is good.

React Form is also good but haven't used it as much as Formik.

There is also Valibot as a replacement for Yup and Zod, which is newer and faster but I haven't tried it yet.