๐๏ธ What is HTMV?
HTMV is a web framework for server-side rendering. It features an HTML-like templating system which lets you
๐๏ธ What you'll build
During this tutorial we'll be building our first TODO list CRUD app to familiarize you with all of HTMV's concepts and features.
๐๏ธ Installation
Our first step towards building our TODO app is installing HTMV. But before that, a quick warning:
๐๏ธ Understanding the project structure
If youโre already familiar with Bun/Node.js and modern web frameworks, feel free to skip ahead to the next section.
๐๏ธ Your first view
As previously stated, all views/components are stored inside your views folder.
๐๏ธ Your first route
In the previous section, we prepared our view for rendering. Now it's time to tell the router we wish to send it to the user when they visit the page.
๐๏ธ What's next?
If you got here, good job! That means you should already have seen your webpage working.
๐๏ธ Your first API
Good job keeping up so far! Next up in our list is being able to create and delete tasks, and for that we'll be making our first API!