Live data from Hacker News

Ask HN: Do You Use Boilerplates?

news.ycombinator.com

1–6 of 6 posts

Ask HN: Do You Use Boilerplates?

#1
I've been doing preparation research for a new SaaS product, and as a solo founder/designer/developer, I'm always looking for ways to save time and effort.

There are, of course, thousands of different boilerplates for parts of stacks, and some for full stacks, but hardly any for a complete functioning SaaS, including billing pages and functionality (think invoice receipts), account & team management, email notifications, etc. etc.—all the stuff you probably don't need to build yourself. I'm having an especially hard time finding something like that for a serverless React application (database as a service & lambdas instead of a traditional backend).

Do you use boilerplates for new products? Have you ever paid for one?

Re: Ask HN: Do You Use Boilerplates?

#4
As far as opportunities for new products, if you can find a useful abstraction to remove a boilerplate component without losing too much customisation... then you've won. Here's some boilerplate I have to write often:

- Login pages

- Simple app state management

- Crud forms, view, edit, list objects

Re: Ask HN: Do You Use Boilerplates?

#6
Yeah, but the one I put together. It saves time, reduces number of decision points when starting a new project. I can concentrate on the product itself instead of the libraries and architectures.

In between projects, I try to update libraries or switch to new ones. It really helps if you assemble the boilerplate yourself, cause you know the logic behind every decision.

Of course I looked for inspiration in other people's boilerplates, it took me two weeks for the initial research and experimentation.