Alpine.js - Technological watch
What kind of framework is Alpine.js ?
Alpine.js is a super easy lightweight javascript framework inspired from Vue.js, used for website to make tiny interactions with the user.
The framework brings a different approach than a traditional javascript code. Instead of manipulating the DOM, we manipulate a state (group of variables), and the framework will automatically refresh the HTML part for us.
The framework is popular ; it has 18.7K stars on github, and is lightweight (33.94 KB).
The framework structure
Attributes
The framework philosophy is about to add attributes in the HTML tags. The attributes look like <div x-myAttribute="dataHere"></div>
Example:
This would print Copyright © 2022
.
We can declare variables like this:
Or listen to events like this:
Then, you can use all these directives together:
Of course, we can show or hide HTML parts, or making loops on arrays !
Attributes are very powerful and are available here: https://alpinejs.dev/directives/data.
Properties
Properties are pre-injected global alpine variables beginning with a $
. Properties can be alpine variables or alpine functions.
It can be used for more complex operations.
We can find a $refs
variable, which refers to the current reference in the DOM.
Methods
Methods are part of alpine framework which can be used in script
tags, which can help you to keep a proper HTML is it is becoming too big.
My opinion
Alpine.js is a great solution for small application which don’t need a full-stack JavaScript framework like Vue, React or Angular. Alpine is very similar and keep the simpleness of Vue.
The documentation is light but easy to read, easy to understand and easy to learn. Alpine gives you all the keys to launch your application !
If you want to add only few user interactions or animations without the fear of making JavaScript too much complex to understand, Alpine.js is a perfect tool for you !
Atomic design - Technological watch
Learn what is the atomic design in less than 5 minutes !
Redis - Technological watch
Learn what is Redis in less than 5 minutes !
Falco - Technological watch
Learn how to protect your Kubernetes cluster in less than 5 minutes !
Atomic distribution - Fedora Silverblue - Technological watch
Learn what is an Atomic distribution in less than 5 minutes !
RabbitMQ - Technological watch
Learn what is RabbitMQ in less than 5 minutes !
OpenAPI / Swagger - Technological watch
Learn what is OpenAPI / Swagger in less than 5 minutes !
Svelte - Technological watch
Learn what is Svelte in less than 5 minutes !
PicoCSS - Technological watch
Learn what is PicoCSS in less than 5 minutes !