Viewing profile — KatrinaKitten
KatrinaKitten
HN member- Joined
- Wed, Oct 04, 2023, 6:44 PM UTC
- HN karma
- 36
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About KatrinaKitten
No profile information was provided.
Recent public activity
-
comment
Comment #39475822
I presumed, but either way you still have to consider that React's "6.4kb" is without any of the actual building blocks a web app will need, just the absolute bare minimum of what …
-
comment
Comment #39475617
React is also not 6.4kb, it's 316kb for base React + 4.5mb for React DOM + who knows how much for any other library you decide to use.
-
comment
Comment #39475600
HTMX does not promise to "do away with" client-side code. In many cases, you don't need or need significantly less JavaScript in an HTMX codebase than in other alternatives, but th…
-
comment
Comment #39431087
Slight correction - is not inert for users who use screen readers, though in this case it shouldn't cause issues. If you need an actual inert element, use a div.
-
comment
Comment #39422986
I'm a big fan of HTMX and it heavily inspired Ajaxial from top to bottom. In fact, until it started diverging more significantly, it originally began as "HTMX but fixing the things…
-
story
Show HN: Ajaxial – Painless, JavaScript-Free Ajax
Ajaxial is a single-file web library that embeds AJAX instructions directly in your HTML structure, allowing you to painlessly design client-server interactions without ever touchi…
-
comment
Comment #38620000
While you certainly could do this, a major benefit of web components is that you get all of this for free out of the box. It's less error/mistake prone, keeps your code cleaner and…
-
comment
Comment #38615270
Thanks for filling my "only read the headline and made a snarky comment anyway" bingo square!
-
comment
Comment #38604089
I actually recently contributed Shadow DOM support to the HTMX cobebase for 2.0! Once that drops, linking Facet and HTMX will only take a simple mixin. htmx.process(root)
-
comment
Comment #38597902
Not exactly. While they can be used in tandem, I'm not necessarily suggesting that they should be; rather, the two serve different purposes and solve different problems. A framewor…
-
comment
Comment #38597826
How so? I'm more than happy to take constructive criticism, but without specifics there's not much I can do.
-
story
Show HN: Facet – Declarative Web Components in HTML
Facet is a single-file web library that allows for the easy, declarative definition of web components. By making use of template elements with special attributes, Facet makes it po…
- story
- story
-
comment
Comment #37769878
1. Element styles cause specificity issues. Probably not an issue in most cases you'd use this, but still a relevant consideration. 2. Element styles don't allow you to style child…