So funny to read this, as this value prop was the reason our team to chose Vue a few years back instead React/Angular.
AlpineJS Guides and Examples
11–16 of 16 posts
Re: AlpineJS Guides and Examples
#12I've used it on a few sites and really liked its simplicity. It's Tailwind for JS. That said, does AlpineJS offer any framework for extension? What I mean is the ability to build on it with custom JS to create custom small components on the page? I know that it's not necessarily intended to to this, but I find this is the gulf between "do it yourself" and "use Vue/React/..." that is hard to fill. For example, with Ta…
There's also spruce when you need to share data across components https://github.com/ryangjchandler/spruce
Re: AlpineJS Guides and Examples
#13Re: AlpineJS Guides and Examples
#14How would it be if compared to Svelte?
I do like Alpine, but after having used it on a few projects it kind of sits in a dead zone for me. I first used it for a mobile menu toggle and a couple other small bits of interactivity, but realized I might as well just right that little bit of JS myself and inline it to save the roundtrip dependency. If I need more JS functionality like shared, client side state management I'll go back to Svelte
Re: AlpineJS Guides and Examples
#15Earlier quoted context omitted.
I would like to recommend Kutty as a component framework that is using Tailwind + AlpineJS. ( https://kutty.netlify.app/ ) Any other similar recommendation?
Is this yours? htmx [1] (by the guy who created intercooler.js) was renamed from "kutty" to "htmx" after this comment [2]: > YSK that in Dutch the name kutty resembles the popular term for the female reproductive organs. [1]: https://htmx.org/ [2]: https://news.ycombinator.com/item?id=23196095
Re: AlpineJS Guides and Examples
#16How would it be if compared to Svelte?
It doesn't require a build step at all, and really lends itself well to static sites. I have used Svelte for years and its still my go-to for web apps, but honestly 95% of the projects I take on are better dealt with as a largely static site than a PWA. We can thank react for how many basic content sites come along with JS runtimes running in the background. I do like Alpine, but after having used it on a few project…