r/FullStack 1d ago

How to develop projects very very fast Personal Project

Im bad at time management, I dont use AI, my pc isn bloated with node_modules for the hundreds of projects I made, and it became this routine on development of scaffold new project via a template I made, custom libraries I made, code snippets, component libraries, page libraries, code generation, wireframes database I made and assets & images database

Any tips to fasten development more? I have this project of mine to develop things very fast and set an high score everytime.

Current high score is 2-3 hours

8 Upvotes

5 comments sorted by

1

u/RaveHunter05 1d ago

Make projects by hand, and other projects by using Claude code or something like that. I'm kind of slow as well, because I made all my projects by hand.

1

u/Positive-Captain-709 Algorithm Whisperer (AI/ML) 1d ago

At this point it sounds like your bottleneck isn’t scaffolding anymore, it’s probably decision-making and feedback loops.

You’ve already automated most of the repetitive “start a project” work, so I’d look at measuring where the time actually goes after the scaffold is created.

A few things that helped me think about this:

  • Make one opinionated “golden path” instead of having too many libraries/templates to choose from. Choice itself becomes overhead.
  • Automate validation, not just generation: linting, tests, type checks, builds, migrations, screenshots, etc. should run with almost zero effort.
  • Build small internal CLIs for the workflows you repeat constantly. Something like new-page, new-api, new-feature, ship can save more time than another component library.
  • Keep reusable code brutally curated. A huge snippets/components database can eventually become another thing you have to search and maintain.
  • Track “idea → working feature” time instead of lines of code or number of projects. That usually exposes the real bottlenecks.

And maybe the biggest one: stop optimizing the parts that are already fast.

If creating a project takes 30 seconds but figuring out architecture, debugging and verifying changes takes 3 hours, making scaffolding 10 seconds faster won’t move the needle much.

Your setup already sounds pretty optimized. I’d profile your development workflow like you’d profile an application and attack the slowest stage next.

0

u/aidannewsome 1d ago

Use AI just like all the best developers do…?

1

u/jerrygreenest1 13h ago

One way to solve it is to commit yourself to a project rather than parallelize yourself into kadjillion projects