TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What tech stack would you choose for building your next app?

39 点作者 roadbeats超过 5 年前
Hi all,<p>I feel like I&#x27;m behind the trends in building apps. I see lots of new stuff-as-a-service, and need to refresh my knowledge.<p>Could you tell what would you choose for your next app ?<p>Backend &#x2F; frontend does not matter.<p>Thanks in advance.

24 条评论

mschaef超过 5 年前
It really depends on the target platform, who will wind up maintaining the code (and for how long!), and how the build will be done.<p>But the short version is that I would (and do) favor Clojure for personal projects. These are cases where I have limited time to invest, a high desire for tangible results, and no other developers to worry about. For that set of tradeoffs (and my skillset), this has generally been the best way for me to achieve my goals. (I also have some code that abstract out some patterns I find useful or importatn.)<p>In these sorts of projects, if I need client side code, I&#x27;ll tend to favor straight JavaScript (with markup rendered by Hiccup) if I can get away with it, and ClojureScript&#x2F;Reagent if I have a requirement that implies a need for client side logic. (Tolerance of lost network connections, incremental page update, and the like.)<p>For more commercial projects, I&#x27;d be thinking TypeScript&#x2F;React with a Java (JVM?) backend for starters. I&#x27;d also be open to Node or Python for the back end, but it really depends on the skillset of the team and where the best libraries are.<p>And all of this would be done with an eye towards the exit. Any codebase that has a reasonable life expectancy will likely have to at least interoperate with other language ecosystems, if not incorporate them bodily. Being mindful of how that might happen is important. (Which practically speaking, means decent interface definitions, testing, and the like.)
7373737373超过 5 年前
Pythons&#x27; Flask + Vue<p><a href="https:&#x2F;&#x2F;testdriven.io&#x2F;blog&#x2F;developing-a-single-page-app-with-flask-and-vuejs&#x2F;" rel="nofollow">https:&#x2F;&#x2F;testdriven.io&#x2F;blog&#x2F;developing-a-single-page-app-with...</a>
fortytw2超过 5 年前
Go, Postgres and a dirt simple React&#x2F;Typescript&#x2F;Parcel app as the frontend. 99% of the time you won’t need anything else.
评论 #21808191 未加载
tboyd47超过 5 年前
Web:<p>If I&#x27;m paying: Wordpress, LAMP, vanilla JS, MySQL, and PHP<p>If I&#x27;m maintaining: Ruby on Rails, PostgreSQL, JQuery, ReactJS<p>If I&#x27;m building a resume: Either C# or Python, SQL, and Javascript, hosted on either AWS or Azure.<p>Mobile: Swift&#x2F;iOS and Java&#x2F;Android both.
评论 #21809477 未加载
wishinghand超过 5 年前
For the frontend I always use Nuxt, which is a server side rendered flavor of Vue. Vue just makes sense to me with how it handles markup, styling, and code in a single component’s scope. The only time I really make use of Vuex, the Vue solution for Redux, is if there’s user data that I need to share into other views.<p>For backend I’d want something either rock solid and fault tolerant like Elixir, or very speedy like Rust or even Go. Kind of depends if I’m doing this in my own or with others.
riter超过 5 年前
For quick proof of concepts<p><i>Backend:</i> Flask -&gt; MySQL -&gt; Docker -&gt; Digital Ocean<p><i>Frontend:</i> Vanilla JS + Bootstrap or VueJS + Template<p>Have yet to fail me. It makes for easy transition once things get serious and I want to migrate over to GCP&#x2F;AWS
codegeek超过 5 年前
frontend: Vue Backend: Golang&#x2F;Laravel PostgresQL database<p>No SPA. I use server side templates and just call the vue components in them as needed.
评论 #21809697 未加载
semireg超过 5 年前
After 5 years on iOS&#x2F;Android I wanted to build a cross platform desktop app. I came up with an idea (make thermal label printers a joy to use) and started hacking a proof of concept using <a href="https:&#x2F;&#x2F;github.com&#x2F;electron-react-boilerplate&#x2F;electron-react-boilerplate" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;electron-react-boilerplate&#x2F;electron-react...</a>.<p>It’s been an incredible learning process, super laborious and an absolute joy to see people buying my app and emailing with questions and ideas.<p>I’ve had to learn React, modern JS development, semantic UI, redux, native node modules, maintaining a cross platform build system, publishing on app stores, selling direct and building my own license system using react&#x2F;express&#x2F;graphql&#x2F;jwt not to mention auth, and other APIs, deployment to Heroku... the list goes on and on.<p>Check out my app at <a href="https:&#x2F;&#x2F;label.live" rel="nofollow">https:&#x2F;&#x2F;label.live</a>
Porthos9K超过 5 年前
I&#x27;d like to use BCHS[1] next time around.<p><a href="https:&#x2F;&#x2F;learnbchs.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;learnbchs.org&#x2F;</a><p>I want something that&#x27;s simple, and reasonably secure by default so that if the crap I build turns out to be insecure, it&#x27;s my own damn fault.
评论 #21808059 未加载
maxharris超过 5 年前
I&#x27;m working on a new frontend framework, as well as a couple of applications that make use of it: <a href="https:&#x2F;&#x2F;github.com&#x2F;maxharris9&#x2F;layout" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;maxharris9&#x2F;layout</a><p>One of my goals is for my framework to compete with Flutter. So why not just use Flutter? Two reasons: Flutter&#x27;s API is object-oriented, and Layout&#x27;s is functional. I also prefer a declarative style for specifying views, but can&#x27;t stand Babel&#x27;s bigness&#x2F;slowness, so I built a JSX transformer (<a href="https:&#x2F;&#x2F;github.com&#x2F;maxharris9&#x2F;jsx-layout" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;maxharris9&#x2F;jsx-layout</a>).
noodle超过 5 年前
My current swiss army knife is Rails+Vue for web&#x2F;api, plus React Native for mobile if necessary.<p>Of course, I&#x27;d use something different if the project necessitated anything in particular.
mc3超过 5 年前
Getting it done:<p>Frontend - Typescript&#x2F;React + miscellaneous libraries. Maybe CSS compiler, maybe raw CSS.<p>Backend - I&#x27;d use C# and .NET but that is for reasons of familiarity. I would also be comfy using NodeJS but I prefer the comparative sanity of C#.NET.<p>For Fun:<p><a href="https:&#x2F;&#x2F;safe-stack.github.io&#x2F;docs&#x2F;overview&#x2F;" rel="nofollow">https:&#x2F;&#x2F;safe-stack.github.io&#x2F;docs&#x2F;overview&#x2F;</a>
nyxtom超过 5 年前
Web&#x2F;services and keeping it boring and basic:<p>Aurelia, Mongo, HAProxy, Nginx, Express, Redis, ELK, Ansible<p>Depends on the dependencies, some things I need have very great implementations and support in golang (network traffic, routing).
rsinger87超过 5 年前
Postgres, Django (with Rest Framework) and TypeScript&#x2F;Angular.
gitgud超过 5 年前
Front-end = Nuxt (vue) + Vuetify.<p>- Simple, great abstractions, many enterprise grade components<p>Back-end = Firebase (Firestore db and Cloud Functions)<p>- Simple, cheap&#x2F;free, scalable
hpliferaft超过 5 年前
React&#x2F;AWS lambda&#x2F;AWS DynamoDb+S3 for prototyping CRUD variations.<p>Anything else would depend on the app&#x27;s features.
hiccuphippo超过 5 年前
There&#x27;s a bunch of new python web frameworks built for asyncio that I&#x27;d like to try.
mijkal超过 5 年前
My side project is React + Firebase (Node functions + NoSQL database + websockets) — love it!
toufique超过 5 年前
Elixir + Vue
patrickgordon超过 5 年前
React w&#x2F; Typescript<p>Firebase coz cbf backends
suyash超过 5 年前
Java, Node.JS and JavaScript.<p>For Mobile - Android ; Java, iOS - Swift
rocketpastsix超过 5 年前
Laravel, Vue, Tailwind, MySQL, OpenAPI, JSON:API.
bradstewart超过 5 年前
Rails<p>Vue (if necessary)
PaulHoule超过 5 年前
Websockets.