Introduction
CBWIRE is a ColdBox module that uses Livewire and Alpine.js to help you build modern, reactive CFML applications in record time without building backend APIs.
Your First Component
Download and install CommandBox. From your CLI, start CommandBox by typing 'box'. Then run the following:
Let's insert a counter element into our Main layout using wire( "Counter" ).
Let's define our Counter component using the path ./wires/Counter.cfc.
Finally, define our counter template using the path ./wires/counter.cfm.
You now have a reactive counter that increments when you click the plus button without any page refreshing or writing JavaScript! 🤯
What!? How?
CBWIRE processes our component's HTML template, data properties, and actions, then displays the component with its initial default values (which begin at 0).
When a user clicks a button, CBWIRE uses Livewire.js to detect the click and initiate a fetch request to communicate with the server.
CBWIRE captures this incoming request and triggers the increment() action, which updates our data property.
Following this, CBWIRE updates the HTML template and includes this revised HTML in the fetch response.
CBWIRE uses Livewire.js to monitor state changes and employs JavaScript and DOM comparison techniques to refresh the display.
Awesome, right?
We developed a responsive counter.
We avoided writing any JavaScript code.
We didn't need to create an API.
There was no need for page refreshes.
We skipped using webpack or dealing with JavaScript compilation.
We stayed entirely within the CFML environment. 🤓
Alpine.js
The Counter example above shows how quickly you can create components that talk to your CFML back-end, but sometimes, you want to use JavaScript for simple UI updates and don't want to send unnecessary requests to your server. Alpine.js is included with CBWIRE automatically, and they work beautifully together.
Below, let's change our component to use Alpine.js and add a method to save the counter to our database.
./wires/Counter.cfc
./wires/counter.cfm
As we increment our counter, it's incremented client-side and responds instantly. We only send a request to our server when we click the 'Save to database' button. This blending of client- and server-side functionality gives you complete control over how and when requests are sent to your server and helps you quickly build modern applications.
CBWIRE is transforming how we build CFML apps; we think you'll love it!
Credits
CBWIRE uses Livewire and Alpine.js for most of its client-side functionality and DOM diffing, which wouldn't exist without the awesome work of Caleb Porzio ( creator of Livewire and Alpine.js ).
The CBWIRE module for ColdBox is written and maintained by Grant Copley, Luis Majano, and Ortus Solutions.
Project Support
Please consider becoming one of our lovingly esteemed Patreon supporters.
Last updated