Certainly! DeshiJS is a smooth, minimal framework for infusing JavaScript with dynamic behavior. It provides an elegant way to enhance your JavaScript code. You can find the project on GitHub: DeshiJS. The framework allows you to create dynamic interactions in your web applications using a straightforward syntax. For example, you can define dynamic behavior like this
<script src="https://cdn.jsdelivr.net/gh/DeshiJS/DeshiJS@main/dev/v1.js" defer></script>
<div $data='{"count": 10}'>
<p $text="{count}"></p>
<button on:click="incrementCount">Increase Count</button>
</div>
<script>
const $ = {};
function incrementCount() {
$.count++;
}
</script>
Feel free to explore the DeshiJS README for more details! 😊🚀