Hacker News new | ask | show | jobs
by cliffordfajardo 1594 days ago
Typescript, React & Posgres or SQLite. I’m really enjoying Remix.run. It’s shares some commonalities with SvelteKit & NextJS. . This is subjective of course, but I enjoy how in Remix there is only 1 way to fetch data, which I believe is simpler mental model & way to get started with or work with:

“The fundamental difference here is that Next.js has four "modes" for getting data on the page: (1)getInitialProps - called server and client side (2)getServerSideProps - called server (3) getStaticProps - called at build time (4)client fetching - called in the browser with Remix there is only 1 called loader”

https://remix.run/blog/remix-vs-next

2 comments

Very similar here, typescript + react + postgres + kubernetes for a full web app deployment. I'm a solo dev working with various SMBs and this is my current go-to stack for new projects. I do lots of smaller projects and I can have a high development velocity with this stack.
Do you have a template that you start with?
For reference, the linked article is in no way an apples-to-apples comparison.