Open Source · Node.js

Build the web
with JavaScript.

LizardJS è una piattaforma open source full-stack per creare applicazioni web con JavaScript e Node.js. Semplice, modulare e senza nascondere ciò che succede sotto.

import {
    res,
    route,
    server
} from "./lizardjs/http.js";

let html = res(
    "<h1>Hello, Lizard!</h1>"
);

let routes = [
    route("/", html)
];

server(routes);
LizardJS

Un toolkit per il web.

LizardJS utilizza Node.js come runtime e aggiunge API semplici per costruire applicazioni web full-stack.

🌐

HTTP & Routing

Crea server e route HTTP con un'API minimale e leggibile.

🍪

Cookie handling

Gestisci cookie, sessioni future e proprietà come HttpOnly, Secure e SameSite.

🧩

Modulare

Le funzionalità sono organizzate in moduli indipendenti e facili da utilizzare.

Getting started

Installa LizardJS.

LizardJS è attualmente disponibile tramite Git. Clona il repository e inizia a costruire.

Terminal
$ git clone https://github.com/DeMENIGECO/lizardjs.git
$ cd lizardjs