Live data from Hacker News

Ask HN: Companies of one, what is your tech stack?

news.ycombinator.com

41–50 of 206 posts

Re: Ask HN: Companies of one, what is your tech stack?

#41

Hosting on Render. Stack: Postgresql+Rails+Hotwire. I really dig Stimulus and Turbo Frames. It took me a little while to really wrap my head around Turbo Streams. I think the documentation is pretty bad compared to the rest of the Hotwire stack, but—holy moly—once I had it working, it's really like a superpower for front-end development. Using Turbo Streams reminds me a bit of the sort of 'head exploding' moments I h…

I just looked at turbostreams. Is the main purpose to have reactive elements without a full SPA which you might have with Vue or React?

Re: Ask HN: Companies of one, what is your tech stack?

#46
post #5

main language: JavaScript on top: TypeScript, Node, Express, React, Postgres Other: Webpack, yarn, scss other: Heroku, GitHub

Out of curiosity, what is keeping you on Heroku?

It's a good question. Since they disabled the automatic deployment it has been causing some issues and I'm revalidating using Heroku. The main reason is the ease of use

Would you suggest something alternative? AWS?

Re: Ask HN: Companies of one, what is your tech stack?

#49
I keep it simple and stay as much as possible in my comfort zone:

Desktop app: Electron + Angular + Express + Firebase Remote Config CLI: Node.js app using Oclif and Express In a basic monorepo using Lerna

Website: Next.js Website's hosting: Firebase hosting + CloudFlare

CI: GitHub Actions

Project management: GitHub Projects

Support: Email, Discord, GitHub Discussions

Project is https://mockoon.com

Re: Ask HN: Companies of one, what is your tech stack?

#50
You're going to love to hate this: Best choice I made was using WordPress!

I run https://rpgplayground.com, a web tool to make RPG games without coding (6000+ user published games) The app itself is written in Haxe. My website is WordPress.

Haxe because it will be easy to port to any device.

Why was WordPress the best choice? Basically everything you need has a plugin.

I needed a forum: bbPress

I needed a community where my members post updates: BuddyPress

I need to send out a newsletter, and most Saas options are crazy expensive: plugin mailster.co, 1 time payment. (Using critsend.com)

Needed some faq page with search, needed a captcha for registering, experimented with ads, post updates to discord, user reporting system, ... You name it, there is a plugin for that.

I also have an external person who writes my newsletters, but isn't allowed push the "publish" button. All thanks to the user roles functionality.

Of course I needed my own plugin to integrate my app and show shared games. I could have written that myself, but then I would lose out on time developing my tool. So I was able to hire a cheap php WordPress developer who made my custom plugin. Went great!

WordPress is so crazy powerfull, that if you want to create some community website, it offers everything you need.

I know my experience is not what many of you would expect, so therefore thought it was interesting to share it with you.

Post reply on HN