Live data from Hacker News

Ask HN: What novel tools are you using to write web sites/apps?

news.ycombinator.com

191–200 of 333 posts

Re: Ask HN: What novel tools are you using to write web sites/apps?

#191

Earlier quoted context omitted.

This speaks to my soul! How cheap of a VPS?

Currently 4.29 EUR/month VPS on Hetzner. (Although I have some fun features planned and might need some more processing power so I might upgrade in the future.) They have great AMD-based VMs, 2x perf/$ over Intel. (I've benchmarked.)

How much traffic per month does it cover in this amount?

I want to launch some toy projects and confuses whether go for AWS or vps.

Re: Ask HN: What novel tools are you using to write web sites/apps?

#193
I am planning a small compute job tracking/notification service. Initially it will be for my own personal use, but may eventually be offered publicly.

I plan to write the server in Racket (likely leaning heavily on [0]) and have it interface with a sqlite database. Since the load will be quite low, I'll put it on a small VPS.

I've enjoyed using Racket for some small projects and am interested in scaling up my abilities to use it in a larger project. Based on my reading the first half of [0], it seems like something that's achievable give my other constraints (real job, etc.).

[0] https://serverracket.com/

Re: Ask HN: What novel tools are you using to write web sites/apps?

#194
My blog/homepage is built using:

- Gatsby.js static site generator framework

- Posts written as md or mdx (markdown with jsx support)

- Github Actions to build the site

- Published to and served by Cloudflare workers

- Uses [sci](https://github.com/borkdude/sci) and ClojureScript to add a live Clojure REPL component that can be used in blog posts

- Tailwindcss is used for styling via emotion css-in-js and a tailwind plugin.

The setup mostly works ok, but as always with the JavaScript community the amount of breaking changes can be a bit taxing. Because Gatsby handles static site generation the blog works without JavaScript enabled for those that only want to access the static content.

Re: Ask HN: What novel tools are you using to write web sites/apps?

#195
post #156

Earlier quoted context omitted.

As someone fairly new to elm: How do you mix Elm with something like react-admin? Do you set up an elm SPA and embed the react part as a custom element? Or do you go the other way around, having the main App be JS controlled and only some components be an embedded elm App?

No mixing. react-admin serves as a quick standalone admin interface.

I see, thanks for the response.

Re: Ask HN: What novel tools are you using to write web sites/apps?

#196

For all of my new side projects I am all in on Phoenix live view. I couldn’t be happier, you can write web apps quickly and it is super reliable. It’s probably not the best choice for every project, but for now it lets me do a lot as a solo dev who has maybe 30 minutes to an hour free a day to code side/personal projects. My personal project that has the most use is https://readastorytome.com/ . Almost all of the pro…

Why are you debating killing it? Is it not making any money, or is it too much to maintain?

It’s not making any money or being used yet (wip) and I have not had much time to work on it recently.

It’s been a great project to work on though. I have had to think about how I to handle a lot of issues that come with web chat widgets, like how and when you alert your customer they have a new message or how to create an embeddable widget.

Another possibility is I will just make it open source.

Re: Ask HN: What novel tools are you using to write web sites/apps?

#197

This partially might be more of a what's old is new again, but here's what I use: - 100% server side rendered - Progressively enhanced (fully works without JS, but having JS enabled makes it nicer) - In select places where I need SPA-like snappiness I use a ~100 line long DOM diffing algorithm (I request full HTML through AJAX and diff it into the current page; if the user has no JS enabled then the page just refresh…

Yes! I am a big fan of "keep data hot" approaches to things. I first came across this approach with the Prevayler library years ago and I love it.

People who haven't tried it will be excited to discover how much faster it is. The only trick is to store your data in a format where you can write the changes easily. E.g., logging changes and then playing back the log on startup.

Re: Ask HN: What novel tools are you using to write web sites/apps?

#198

This partially might be more of a what's old is new again, but here's what I use: - 100% server side rendered - Progressively enhanced (fully works without JS, but having JS enabled makes it nicer) - In select places where I need SPA-like snappiness I use a ~100 line long DOM diffing algorithm (I request full HTML through AJAX and diff it into the current page; if the user has no JS enabled then the page just refresh…

What Rust framework/crate are you using for webserver?

Re: Ask HN: What novel tools are you using to write web sites/apps?

#199
- Next.js (react)

- Chakra-UI (for ui + ux)

- Hasura (graphql + postgresql)

- Express.js (for custom actions, event hooks etc)

- Kafka for message brokers

Previously, I was fullstack javascript developer using raw html with only express js and its renderer. Later I discovered ui and ux, react with dsl also graphql as data layer overwhelmed me. So I found simple stack for faster shipping. Learning curve is not that difficult I think.

Re: Ask HN: What novel tools are you using to write web sites/apps?

#200
hugo[1] for static websites, that need SEO

SVELTE[2], routify[3] and Orbit.js[4] for SPA Frontend with API requirements API Platform[5] or JsonApiDotNetCore[6] for Backend

SignalR[7] when realtime is required

[1] https://gohugo.io/

[2] https://svelte.dev/

[3] https://routify.dev/

[4] https://orbitjs.com/

[5] https://api-platform.com/

[6] https://www.jsonapi.net/

[7] https://dotnet.microsoft.com/apps/aspnet/signalr

Post reply on HN