For web, I wrote my own http server with c++. For desktop app I use c++/Qt. For app I use ios/swift.
Ask HN: What's your go-to stack for prototyping web applications and MVPs?
11–20 of 30 posts
Re: Ask HN: What's your go-to stack for prototyping web applications and MVPs?
#12For web, I wrote my own http server with c++. For desktop app I use c++/Qt. For app I use ios/swift.
Do you use any front-end libraries for your web projects?
I usually purchase a template from themeforest. I care more about the design, whatever the theme I purchase use, I just modify it from there.
Re: Ask HN: What's your go-to stack for prototyping web applications and MVPs?
#13Don't do it. It is quick and somewhat easy but just horrible. I need to stop being lazy...
Re: Ask HN: What's your go-to stack for prototyping web applications and MVPs?
#14I try to avoid JavaScript if possible... Setting up the JavaScript build/transpile system, installing dependencies, fighting the dependency version hell drains all the hype and productivity from my soul...
Re: Ask HN: What's your go-to stack for prototyping web applications and MVPs?
#15Earlier quoted context omitted.
Do you use any front-end libraries for your web projects?
I don't use front-end lib that much. I usually purchase a template from themeforest. I care more about the design, whatever the theme I purchase use, I just modify it from there.
I'm curious about what kind of projects you do with a C++ web server. Could you talk a bit about them?
Re: Ask HN: What's your go-to stack for prototyping web applications and MVPs?
#16I love Ruby and for the quick web MVPs I use sinatra + sequel. I try to avoid JavaScript if possible... Setting up the JavaScript build/transpile system, installing dependencies, fighting the dependency version hell drains all the hype and productivity from my soul...
Do you have any such MVPs or projects you could share?
Re: Ask HN: What's your go-to stack for prototyping web applications and MVPs?
#17Re: Ask HN: What's your go-to stack for prototyping web applications and MVPs?
#18Frontend: Bootstrap for looks and CSS sanity. Knockout for data binding; it's a mature framework that works fine for small- to medium-sized web apps. If I'm to learn something new, I'd go for Vue.js, whose concepts look very much like Knockout and it benefits from virtual DOM rendering.
Re: Ask HN: What's your go-to stack for prototyping web applications and MVPs?
#19Re: Ask HN: What's your go-to stack for prototyping web applications and MVPs?
#20Go(Lang) backend + plain html, jquery and gulp on the frontend. After doing Rails for a while, I was tired of the slowness and layers upon layers of abstraction. Go is simple in comparison - the language philosophy helps you keep everything close to where it's executing. No assumptions. I've borrowed some lessons from Rails in structuring my code (models are separate, api for controller logic, views are static pages…