Skip to main content

Relax

For making websites

~~~~~~~

I’m working on a RequestResponse-router (Check it out!), and on a HTML Parser that uses Template literals and keep element references, eg

const name = template`<span>🐶 Dog</span>`
const greeting = template`<h1>Hi ${name}! Welcome to Relax.</h1>`

name.textContent = '😸 Cat'

console.log(greeting) // <h1>Hi <span>😸 Cat</span>! Welcome to Relax.</h1>

It’s not ready yet but the code’s at /templating.

Check out ayoreis.com for a website using this!


Made by Ayo with 💖.