Looking to build interactive web apps with ultimate flexibility and adaptability?
Check out ? mizu.js ??!
It offers around thirty powerful directives to dynamically render HTML, listen to events, create custom elements, bind and model attributes, handle HTTP requests, render markdown and code, and much much more!
And it works client-side on any modern browser...
...but also server-side on your favorite runtime, whether it's Node, Deno, or Bun! You can even use it for static site generation!
Over the years, I've become increasingly frustrated with the need to set up an entire ecosystem just to create simple interactive web pages. You often need a dedicated toolbox, tons of dependencies, transpiling steps, and to learn a new superset of a language. You may even end up spending more time setting up your environment than actually working on your project! That's why I grew fond of libraries such as Alpine.js and htmx, which require no setup and are easy to use. However, I felt these had some limitations. Since they were mostly designed for client-side usage, it wasn't really possible to use them in server-side rendering contexts (including static generation). In the meantime, I started writing more and more isomorphic JavaScript (i.e., working both in client and server) and found Deno to be the perfect runtime for it. Deno relies on web standards rather than implementing its own like Node. Because of this, I encountered some compatibility issues, which shouldn't exist, as developers should be free to use whatever that suits them best, whether it's Node, Deno, Bun or the browser. With all these points in mind, I started working on « 水 » (mizu, the kanji for water in Japanese), a new library that attempt to addresses all the above-mentioned issues. And today, I'm excited to introduce it to you!Why yet another JavaScript templating library?
I get your concern, but hear me out!
mizu.js integrates directly with your HTML and uses vanilla JavaScript expressions for its expressions. This means you don't need to learn a new language or paradigm to start using it.
<!-- Conditionally render elements --> <a>Heads!</a><a> <b>Tails!</b> <!-- Render list elements dynamically --> <ul> <li value of> <li> </ul> <!-- Bind attributes and handle events --> <form :class="{ 'user-form': true }" input:> <input type="text" ::value="input"> </form> <!-- Template text content --> <span is date></span> <span>Today is {{ new Date() }}</span> </a>
In mizu.js, the first character of a directive indicates its purpose:
- * for general directives
- @ for event-based directives
-
: for attribute binding directives
- :: for two-way binding directives (also known as modeling)
You might notice some similarities with the syntax from other frameworks and libraries, which is intentional.
mizu.js is reactive, automatically updating the DOM whenever your data changes (on the client-side).
Rendering rich content
mizu.js also offers some neat directives to easily render rich content such as markdown or code syntax highlighting.
<!-- Conditionally render elements --> <a>Heads!</a><a> <b>Tails!</b> <!-- Render list elements dynamically --> <ul> <li value of> <li> </ul> <!-- Bind attributes and handle events --> <form :class="{ 'user-form': true }" input:> <input type="text" ::value="input"> </form> <!-- Template text content --> <span is date></span> <span>Today is {{ new Date() }}</span> </a>
HTTP based directives
mizu.js offers a set of directives inspired by htmx.
These directives are especially useful in server-rendering contexts for importing content, but they can also be used on the client side to perform HTTP requests.
<!-- Automatically generate a table of contents from h1-h6 tags within the selected element --> <nav section></nav> <!-- Render markdown content --> <div>**hello world!**</div> <!-- Highlight syntax using TypeScript flavor --> <code>const foo = "bar"</code>
Working with HTML custom elements
While HTML natively supports custom elements, they can be a bit tedious to use.
mizu.js simplifies this process with a more concise syntax for defining and using custom elements in your documents.
<!-- Fetch and display remote content --> <div></div> <div></div> <!-- Make an HTTP POST request on click and show the response --> <button custom header foo:></button>
Bonus: You can easily reuse your custom elements in other projects by importing them with a HTTP based directive!
<!-- Create a custom element --> <template> <div> There is {{ items.length }} items: <ul><slot name="items"></slot></ul> </div> </template> <!-- Use the custom element --> <my-element> <li>foo</li> <li>bar</li> </my-element>
Miscelleanous
I won't cover every available directive here, but there are many more to explore!
Here's a small selection of some interesting ones:
<template></template>
Using mizu.js programmatically
So far, I've shown how to use mizu.js directly in your HTML documents, but you can also use it programmatically for more advanced use cases.
Because mizu.js directives are just plain HTML attributes, the syntax remains the same for both client-side and server-side rendering. This means you can easily switch between rendering environments without ever changing your templates!
<!-- Automatically update the time every second --> <!-- Perfect for elements where reactivity can't be tracked --> <time>{{ new Date() }}</time> <!-- Execute raw code for special cases --> <div></div>
Generating static sites
You can generate static sites easily
import Mizu from "@mizu/render/server" export default { async fetch() { const headers = new Headers({ "Content-Type": "text/html; charset=utf-8" }) const body = await Mizu.render(`<div></div>`, { context: { foo: "? Yaa, mizu!" } }) return new Response(body, { headers }) }, }
Start using mizu.js today!
Want to experiment with mizu.js without installing anything?
Checkout mizu.sh/playground!
lowlighter
/
mizu
? mizu.js is a lightweight html templating engine for any side rendering. No build steps, no config, no headaches.
Visit mizu.sh for a comprehensive overview!
Bonus: mizu.js pairs perfectly with matcha.css to make your websites look fantastic!
The above is the detailed content of Supercharge your HTML with mizu.js!. For more information, please follow other related articles on the PHP Chinese website!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

This article series was rewritten in mid 2017 with up-to-date information and fresh examples. In this JSON example, we will look at how we can store simple values in a file using JSON format. Using the key-value pair notation, we can store any kind

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Dreamweaver Mac version
Visual web development tools
