HackerTrans
TopNewTrendsCommentsPastAskShowJobs

mb2100

114 karmajoined 13 jaar geleden
http://github.com/mb21

hacking on https://mastrojs.github.io

Submissions

[untitled]

1 points·by mb2100·2 maanden geleden·0 comments

Deno Employees Leave

dbushell.com
6 points·by mb2100·4 maanden geleden·1 comments

[untitled]

1 points·by mb2100·5 maanden geleden·0 comments

[untitled]

1 points·by mb2100·8 maanden geleden·0 comments

What I learned porting Mastro from Deno to Node.js

mastrojs.github.io
3 points·by mb2100·9 maanden geleden·1 comments

Ask HN: Anybody else having dev.azure.com/vscode auth issues?

1 points·by mb2100·9 maanden geleden·0 comments

comments

mb2100
·gisteren·discuss
Some people even like stinky!
mb2100
·4 dagen geleden·discuss
This. Cannot believe it too so long for somebody to finally mention progressive enhancement.
mb2100
·20 dagen geleden·discuss
> Backend and UI communication goes through in-process channels, not socket-based IPC

Are they running the frontend and backend in the same process? Sounds a bit dangerous security-wise?
mb2100
·vorige maand·discuss
This. "No loading animations" works if you rely on the browser's loading indicators that all users will be familiar with.

@OP, if you're up for a rewrite of the frontend, happy to help you get started with https://mastrojs.github.io
mb2100
·vorige maand·discuss
the achilles heel of SPAs everywhere.
mb2100
·vorige maand·discuss
right? or give me GitHub issues before the React rewrite – at least they loaded fast...
mb2100
·2 maanden geleden·discuss
What AI is doing to the jobs of programmers feels very familiar to a lot of us frontend developers – because it has happened to us before.
mb2100
·2 maanden geleden·discuss
Yeah, while you certainly can write semantic HTML with Tailwind, it absolutely doesn't encourage it. It's funny how Tailwind is conceptually going back to inline styles.

But sure, if you have <Title>, <Header> and <Button> components etc. instead of using HTML elements <h1>, <header>, <button> etc. directly, then why not stuff the CSS into the components as well? It all depends on whether you prefer to use components, HTML elements or a combination as your favourite abstraction.[0]

[0]: https://mastrojs.github.io/blog/2025-11-27-why-not-just-use-...
mb2100
·2 maanden geleden·discuss
Sounds similar to https://nightride.com ?
mb2100
·2 maanden geleden·discuss
That's because Apache is basically what today's JS crowd would call a "file-based router", and then the app implements the actual routing in that index.php file. Just like early SPA stored the route in a hash. It's funny how history repeats itself.

I've gone back and forth on file-based vs programmatic routing. But each has pros and cons, so in the end I implemented both in Mastro: https://mastrojs.github.io/docs/routing/
mb2100
·2 maanden geleden·discuss
What's the main motivation for considering Rust?

For what it's worth, in my last experience with Bun[0] I ran into a couple of bugs where it seemed Rust could have helped, e.g. using Bun.write

[0]: https://mastrojs.github.io/blog/2025-10-29-what-struggled-wi...)
mb2100
·3 maanden geleden·discuss
Agree that TypeScript is nice, especially for sharing templates and types between server and client. But you can still use TypeScript on the server without sending it all to the client, and without a complex and insecure protocol like RSC. I’m working on making this as simple and dependency-free as possible: https://mastrojs.github.io
mb2100
·3 maanden geleden·discuss
That was exactly my experience as well, hence I created a "Minimal Astro": https://mastrojs.github.io
mb2100
·5 maanden geleden·discuss
Yeah, for that a git-based CMS like Sveltia is really nice.

And for people that actually want to learn a bit of HTML, CSS and JavaScript, Mastro JS is as simple a static site generator as I could make it.
mb2100
·5 maanden geleden·discuss
if you're not using CSS modules, why would you import the css file into your javascript? But anyway, I think we agree. Feel free to read the linked blog post ;-)
mb2100
·5 maanden geleden·discuss
button, .button { /* my button styles */ }
mb2100
·5 maanden geleden·discuss
If everything in your code is a React component, I get why you would just want to write the styles right there.[0] Then again, why write `<Button>` if you could just write `<button>` and style it with standard CSS.

[0]: https://mastrojs.github.io/blog/2025-11-27-why-not-just-use-...
mb2100
·5 maanden geleden·discuss
In Unix, everything is a file. In Mastro, everything is an HTTP route. You use the standards-based Request/Response-API not only for writing your server, but also for static site and asset generation. And it's beautiful.
mb2100
·5 maanden geleden·discuss
Tell me you're nostalgic for Win95 without telling me...
mb2100
·6 maanden geleden·discuss
As company size grows, managers want to settle on a "standardized" tech stack that doesn't get in the way when they want to hire and fire people at will.

Nobody was ever fired for choosing React (or IBM). But everyone can get fired when they're working on a React app.