logoalt Hacker News

twalichiewiczyesterday at 1:54 PM7 repliesview on HN

It's certainly a nice promotional website.

My first thought was, "So, Replit and ilk?", seems they expected that comparison:

> How is Glaze different from Lovable, Replit, or v0?

> Those tools build for the browser. Glaze builds for your desktop. That means your apps can access your file system, your camera, keyboard shortcuts, menu bar integration, and background processes. Things a web app can’t do. It’s a different category entirely.

Pretty sure modern web apps can do all of those (sans menu bar). (If anything they do background processes better since you can send a very long task off to a server and shut off your computer, come back later and pick up where you left off.)

Also, as others mentioned, this just seems like Claude Code with extra steps, unless they managed to nail some sort of design standard enforcement they feel is better than what most people can get out of it.

The quick publishing is kind of nice, but it immediately made me think it would be more interesting to have a way to quickly remix other people's creations, similar to the Figma Community tab: you can take someone else's work, break it apart to see how it works, then tweak it how you want it.


Replies

pelagicAustralyesterday at 3:36 PM

I took a few shots at building desktop apps with Tauri, Wails and Electron using Claude Code, and the results were not very good at all. In fact, they were by far the worst results I've gotten with the tool. I can easily clone one of my boilerplate repos in Rails, or Django and prompt away, and the results are consistently good, as in, functional MVP in a few hours. This was never the case for the desktop tools I mentioned.

This looks like a highly specialized tool for desktop that actually works. I watch the demo and I am assuming the apps are actually made with some kind of technology a la Tauri, or Electron, thus making the apps cross-platform.

I don't think we are anywhere near a tool like this for native, but that's a lost battle anyway.

show 4 replies
tshaddoxyesterday at 2:17 PM

> Also, as others mentioned, this just seems like Claude Code with extra steps, unless they managed to nail some sort of design standard enforcement they feel is better than what most people can get out of it.

Well yeah, isn’t that criticism we’ve had every LLM wrapper for years now? “Show me the prompt!” But that doesn’t mean these types of products are useless.

mcintyre1994yesterday at 4:10 PM

> If anything they do background processes better since you can send a very long task off to a server and shut off your computer, come back later and pick up where you left off.

I think it's fair to say that's a benefit of web apps over native apps in many cases. But for the kind of business app use case they're talking about, it's also a tradeoff. I can imagine a lot of business apps where you don't want to send the data to the server of a Replit etc. and doing all the processing local is a benefit.

general_revealyesterday at 9:05 PM

You mean “fork” other apps.

varun_chyesterday at 1:56 PM

A big thing would be API requests/browser automation. Web apps can’t do that without a backend proxy due to CORS

nateb2022yesterday at 2:16 PM

> Also, as others mentioned, this just seems like Claude Code with extra steps, unless they managed to nail some sort of design standard enforcement they feel is better than what most people can get out of it.

My feeling is that it's intended for a less-technical audience than Claude Code.

show 1 reply
jeroenhdyesterday at 2:28 PM

> Pretty sure modern web apps can do all of those

If you're on Chrome and give them permission, or stuff them into Electron and friends, they can. The workflow isn't as smooth as with native applications, though.

On the other hand, the web browser does protect you from some of the risks this essentially "trust me bro" curl2bash-as-a-service product inherently comes with.