Limette logo
Docs

The framework for Deno and Web Components

Limette is a full-stack framework for Deno and Web Components. It has support for Tailwind.

deno.json
index.js
import { LitElement, html } from "lit";

export default class App extends LitElement {
  render() {
    return html`<div>Hello World</div>`;
  }
}
                

Batteries included

Features

Limette is a modern framework based on green technologies like Deno and Web Components.

Deno
Deno on server, meaning TypeScript support, security and Web APIs. The same experience you are used to it.
Lit
Web Components with Lit on browser. Fast and tiny footprint.
Island-based architecture
Send JavaScript to the browser only for interactive parts.
File system routing
Create routes right from your files.
Tailwind support
Use Tailwind and only the CSS code used will be delivered to the browser.
Zero config required
No need for complex configs to use TypeScript or Tailwind. Just write your code.