Ask HN: What is your preferred “full-stack in a box” solution and why?
1–10 of 37 posts
Re: Ask HN: What is your preferred “full-stack in a box” solution and why?
#2Re: Ask HN: What is your preferred “full-stack in a box” solution and why?
#3I think the killer feature of Django is the Admin framework, its so often overlooked when developing a site/app that internal (not user facing) tools are so important. With the Dango Admin you get something incredible with so few lines of code. It's practically a super power.
If you need a little more interactive "SPA" like functionality, throw in Django REST Framework and your preference of front end framework. I would tend to go with Vue as it feels like it's the same sort of "battery's included" framework as Django. You can also easily use it to build smaller components without having to go all in on SPA.
If you are then asked for a Mobile App on top of that I would reach for Ionic/Capacitor, particularly if you already have a (partly) Vue or React based front end. You can then reuse most of your code. Need some native functionality not covered by Capacitor plugins? take a look at brining in NativeScript, it works brilliantly with Capacitor. (If you haven't taken a look at modern Ionic/Capacitor it has come on so far since the Cordova/PhoneGap days)
Re: Ask HN: What is your preferred “full-stack in a box” solution and why?
#4C# and Kotlin offer a nice balance between rigor and accessibility and have good docs and tooling. Using the same language across the stack makes collaboration and debugging simpler. Large labor pool of devs who prob have a bit stronger CS fundamentals than the average JS/TS dev, but still prob have a web/mobile app focus/experience
Re: Ask HN: What is your preferred “full-stack in a box” solution and why?
#5For prototyping I liked postgrest or api-platform.
https://typeorm.io/ is also nice...
Re: Ask HN: What is your preferred “full-stack in a box” solution and why?
#6Re: Ask HN: What is your preferred “full-stack in a box” solution and why?
#7I think tooling to generate typesafe SQL methods from inspecting a DB is a big win for the Deno ecosystem. And an equivalent for Storybook. From that point forwards, it’s pretty good for lean projects.
Re: Ask HN: What is your preferred “full-stack in a box” solution and why?
#8I think it depends a lot on the product you are building, but in my option nothing beats Django for rapid development of a website/app. True it doesn't have an answer "in the box" for client side interaction but combined with tools such as htmx and alpine.js you get something very similar to the modern Rails/Hotwire stack. Personally though you can get along way with just vanilla JavaScript. I think the killer featur…