Liqd Framework is a Node.js server framework that bundles a collection of liqd-* libraries for building web applications and APIs. Version 1.7.13 is the latest stable release, with infrequent updates. It provides a modular architecture with routing, middleware, and HTTP utilities. Compared to Express or Fastify, it is less widely adopted and has limited community support, but offers a cohesive set of tools from the same ecosystem. The framework emphasizes simplicity and minimal dependencies, making it suitable for small to medium projects.
npm install liqd-frameworkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a basic HTTP server with a single route and starts listening on port 3000.
Use import syntax and ensure your project is configured for ESM (e.g., type: "module" in package.json).
Always return a Promise or mark handler as async.
Replace .use(subApp) with .mount(subApp).
Switch to import syntax and enable ESM in your project.
Use import { Router } from 'liqd-framework'.No dependency data recorded yet.