TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Best modern web stack for new self hosted projects

1 pointsby NickBuseyabout 5 years ago
Hey HN,<p>I&#x27;m looking to develop several small, self-hostable apps, likely wrapped in Docker for easy deployment.<p>There needs to be API support, as well as front end support. It should be fast and reasonably lightweight to host on small servers (Raspberry Pis etc). I don&#x27;t want to write a ton of boilerplate to get user registration, API keys, etc working.<p>I don&#x27;t want to spend all day wrestling with types or memory management (looking at you Rust and Go). The code should ideally be somewhat approachable for other people to be able to contribute.<p>A million build dependencies is also undesirable so Node is probably out.<p>At this point I&#x27;m leaning towards just plain ol&#x27; PHP like Laravel.<p>Thoughts?

1 comment

oldgreggabout 5 years ago
Build a dapp in Go right now. It&#x27;s not good for modeling complex business problems but if your app is mostly API it&#x27;s great for self-hosted. Memory management isn&#x27;t a problem but def more verbose and less &quot;fun&quot; than ruby. If you use SQLite or badger as database it has a great install story- no configuration or docker even really needed. Front end is in Vue and that gets packed into 25mb binary I can run locally on win&#x2F;Mac or throw on a VPS and run at scale.